getOpenBFrame method

Future<bool> getOpenBFrame()

获取视频硬编模式下是否开启B帧

returns 是否开启B帧 默认:false

Implementation

Future<bool> getOpenBFrame() async {
  String strV = await _livePusherConfigMC.invokeMethod(
    'getOpenBFrame',
    wrapArgs(),
  );
  int intV = int.parse(strV);
  return intV == 1 ? true : false;
}