enableTransientANS method
- bool enable
开/关瞬态噪声抑制
支持版本:1.17.0 及以上。 详情描述:用于抑制敲击键盘、桌子等瞬态噪声。 业务场景:当需要抑制瞬态噪声以提高通话质量和用户体验时,可以开启此功能。 默认值:未调用此函数时,默认不开启瞬态噪声抑制。 调用时机:需要在 createEngine 之后调用。 相关接口:此函数开启后不会抑制常规噪声,如果需要开启常规噪声抑制,请使用 enableANS 使用限制:无。
enable
是否开启瞬态噪声抑制;true 表示开启;false 表示关闭
Implementation
Future<void> enableTransientANS(bool enable) async {
return await ZegoExpressImpl.instance.enableTransientANS(enable);
}