setCameraExposureCompensation method

Future<void> setCameraExposureCompensation(
  1. double value,
  2. {ZegoPublishChannel? channel}
)

设置摄像头曝光补偿数值,支持指定推流通道号。

支持版本:2.10.0 及以上。 详情描述:设置摄像头曝光补偿数值。 业务场景:当用户需要设置摄像头曝光补偿值时,可以调用此接口。 调用时机:调用 startPublishingStreamstartPreview 后调用此函数。 使用限制:无。 注意事项:摄像头重启后,设置会失效。 平台差异:仅支持 iOS 和 Android。 注意:此函数仅在 ZegoExpressVideo SDK 中有效!

  • value 摄像头曝光度,取值范围为 -1,1, 默认值为 0。取值越小画面越暗,取值越大画面越亮。
  • channel 推流通道

Implementation

Future<void> setCameraExposureCompensation(double value,
    {ZegoPublishChannel? channel}) async {
  return await ZegoExpressImpl.instance
      .setCameraExposureCompensation(value, channel: channel);
}