Class VideoEncoderConfiguration

Video encoder configurations.

Hierarchy

  • VideoEncoderConfiguration

Constructors

Properties

advanceOptions?: AdvanceOptions

Advanced options for video encoding. See AdvanceOptions.

bitrate?: number

The encoding bitrate (Kbps) of the video. This parameter does not need to be set; keeping the default value STANDARD_BITRATE is sufficient. The SDK automatically matches the most suitable bitrate based on the video resolution and frame rate you have set. For the correspondence between video resolution and frame rate, see. STANDARD_BITRATE (0): (Recommended) Standard bitrate mode. COMPATIBLE_BITRATE (-1): Adaptive bitrate mode. In general, Agora suggests that you do not use this value.

codecType?: VideoCodecType

The codec type of the local video stream. See VideoCodecType.

degradationPreference?: DegradationPreference

Video degradation preference under limited bandwidth. See DegradationPreference. When this parameter is set to MaintainFramerate (1) or MaintainBalanced (2), orientationMode needs to be set to OrientationModeAdaptive (0) at the same time, otherwise the setting will not take effect.

dimensions?: VideoDimensions

The dimensions of the encoded video (px). See VideoDimensions. This parameter measures the video encoding quality in the format of length × width. The default value is 960 × 540. You can set a custom value.

frameRate?: number

The frame rate (fps) of the encoding video frame. The default value is 15. See FrameRate.

minBitrate?: number

The minimum encoding bitrate (Kbps) of the video. The SDK automatically adjusts the encoding bitrate to adapt to the network conditions. Using a value greater than the default value forces the video encoder to output high-quality images but may cause more packet loss and sacrifice the smoothness of the video transmission. Unless you have special requirements for image quality, Agora does not recommend changing this value. This parameter only applies to the interactive streaming profile.

mirrorMode?: VideoMirrorModeType

Sets the mirror mode of the published local video stream. It only affects the video that the remote user sees. See VideoMirrorModeType. By default, the video is not mirrored.

orientationMode?: OrientationMode

The orientation mode of the encoded video. See OrientationMode.

Generated using TypeDoc