getCameraMaxZoomFactor method

Future<double> getCameraMaxZoomFactor(
  1. {ZegoPublishChannel? channel}
)

获取摄像头最大变焦倍数,支持指定推流通道号。

支持版本:1.20.0 及以上。 详情描述:获取摄像头最大变焦倍数。 调用时机:摄像头启动成功后调用才有效,一般可以在收到采集首帧回调 onPublisherCapturedVideoFirstFrame 的时候调用。 使用限制:无。 注意:此函数仅在 ZegoExpressVideo SDK 中有效!

  • channel 推流通道
  • Returns 摄像头最大变焦倍数

Implementation

Future<double> getCameraMaxZoomFactor({ZegoPublishChannel? channel}) async {
  return await ZegoExpressImpl.instance
      .getCameraMaxZoomFactor(channel: channel);
}