getExternVideoFormat method

Future<AlivcLivePushVideoFormat> getExternVideoFormat()

获取外部自定义视频数据

returns 外部自定义视频数据 默认:AlivcLivePushVideoFormat.Unknown

Implementation

Future<AlivcLivePushVideoFormat> getExternVideoFormat() async {
  String strV = await _livePusherConfigMC.invokeMethod(
    'getExternVideoFormat',
    wrapArgs(),
  );
  int intV = int.parse(strV);
  return VideoFormatData.convertEnumValue(intV);
}