Method initWithWidth:height:frameRate:bitrate:orientationMode:mirrorMode:
initWithWidth:height:frameRate:bitrate:orientationMode:mirrorMode:
指定视频宽和高并初始化一个 AgoraVideoEncoderConfiguration
对象。
Objective-C
- (instancetype _Nonnull)initWithWidth:(NSInteger)width
height:(NSInteger)height
frameRate:(AgoraVideoFrameRate)frameRate
bitrate:(NSInteger)bitrate
orientationMode:(AgoraVideoOutputOrientationMode)orientationMode
mirrorMode:(AgoraVideoMirrorMode)mirrorMode;
参数
- width
- 视频宽度。
- height
- 视频高度。
- frameRate
- 视频帧率。详见 AgoraVideoFrameRate。
- bitrate
- 视频码率。
- orientationMode
- 视频方向。详见 AgoraVideoOutputOrientationMode。
- mirrorMode
- 发送编码视频时是否开启镜像模式,只影响远端用户看到的视频画面。详见 AgoraVideoMirrorMode。
返回值
初始化的 AgoraVideoEncoderConfiguration 对象。