enableCustomVideoCapture method

Future<V2TXLiveCode> enableCustomVideoCapture(
  1. bool enable
)

开启/关闭自定义视频采集。

在自定义视频采集模式下,SDK 不再从摄像头采集图像,只保留编码和发送能力。

enable true:开启自定义采集;false:关闭自定义采集。【默认值】:false @return 返回值 {@link V2TXLiveCode}

  • V2TXLIVE_OK: 成功 @note 需要在 startPush(@ref V2TXLivePusher#startPush:) 之前调用,才会生效。

Implementation

Future<V2TXLiveCode> enableCustomVideoCapture(bool enable) async {
  var result = await _channel.invokeMethod(
      'enableCustomVideoCapture', {"enable": enable});
  return _liveCodeWithResult(result);
}