setExternVideoFormat method
设置外部自定义视频数据
externVideoFormat
外部自定义视频数据
Implementation
Future<void> setExternVideoFormat(
AlivcLivePushVideoFormat externVideoFormat) async {
int externVideoFormatIntV = VideoFormatData.convertInterfaceValue(
externVideoFormat.index,
);
return _livePusherConfigMC.invokeMethod(
'setExternVideoFormat',
wrapArgs(arg: externVideoFormatIntV.toString()),
);
}