setOpenBFrame method

Future<void> setOpenBFrame(
  1. bool openBFrame
)

设置视频硬编模式下是否开启B帧

openBFrame 是否开启B帧

Implementation

Future<void> setOpenBFrame(bool openBFrame) async {
  return _livePusherConfigMC.invokeMethod(
    'setOpenBFrame',
    wrapArgs(arg: boolToString(openBFrame)),
  );
}