Webex Meetings
Webex Meetings
Background Noise Removal
Use the iOS Meetings SDK background noise removal feature (BNR) to improve the quality and clarity of meeting audio.
You enable BNR using the webex.phone.audioBNREnabled
property.
anchorEnable or Disable BNR
anchorTo enable or disable BNR, set audioBNREnabled
to true
or false
as required:
webex.phone.audioBNREnabled = true // BNR is enabled.
anchorConfigure the BNR Mode
anchorThe BNR feature supports two modes: Low Power (LP) and High Performance (HP).
enum AudioBNRMode {
case LP // Low Power
case HP // High Performance
}
Set the BNR mode to .HP
by default.
The BNR mode is only effective if webex.phone.audioBNREnabled
is set to true
.
webex.phone.audioBNRMode = .HP