setCameraCapturerConfiguration method

Future<void> setCameraCapturerConfiguration (
  1. CameraCapturerConfiguration config
)

设置摄像头的采集偏好。

一般的视频通话或直播中,默认由 SDK 自动控制摄像头的输出参数。在如下特殊场景中,默认的参数通常无法满足需求, 或可能引起设备性能问题,我们推荐调用该接口设置摄像头的采集偏好:

Note

请在启动摄像头之前调用该方法,如 RtcEngine.joinChannelRtcEngine.enableVideo 或者 RtcEngine.enableLocalVideo

Parameter config 摄像头采集偏好。详见 CameraCapturerConfiguration

Implementation

@override
Future<void> setCameraCapturerConfiguration(
    CameraCapturerConfiguration config) {
  return _invokeMethod(
      'setCameraCapturerConfiguration', {'config': config.toJson()});
}