setVideoDenoiseParams method

Future<void> setVideoDenoiseParams(
  1. ZegoVideoDenoiseParams params,
  2. {ZegoPublishChannel? channel}
)

Set video denoise params.

Available since: 3.18.0 Description: Set video denoise parameters, including mode and strength. Default value: Off. When to call: After creating the engine createEngine. Platform differences: Only supports iOS and Android. Note: This function is only available in ZegoExpressVideo SDK!

  • params Video denoise params.
  • channel Publish stream channel.

Implementation

Future<void> setVideoDenoiseParams(ZegoVideoDenoiseParams params,
    {ZegoPublishChannel? channel}) async {
  return await ZegoExpressImpl.instance
      .setVideoDenoiseParams(params, channel: channel);
}