setOpenBFrame method

Future<void> setOpenBFrame(
  1. bool openBFrame
)

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

openBFrame 是否开启B帧

Implementation

Future<void> setOpenBFrame(bool openBFrame) async {
  return AlivcLivePusherConfig.methodChannel.invokeMethod(
      'setOpenBFrame', _wrap(arg: AlivcLiveTool.boolToString(openBFrame)));
}