setMinFps method
设置最小视频采集帧率
minFps
最小视频采集帧率
不可大于 视频采集帧率fps
Implementation
Future<void> setMinFps(AlivcLivePushFPS minFps) async {
int fpsIntV = FPSData.convertInterfaceValue(minFps.index);
return _livePusherConfigMC.invokeMethod(
'setMinFps',
wrapArgs(arg: fpsIntV.toString()),
);
}