-
Notifications
You must be signed in to change notification settings - Fork 29
Bandwidth Extension Support
This document provides an overview of the public APIs available in the v3.14 SDK for enhancing receiver-side audio quality for Webex and PSTN calls. The feature includes options for legacy noise removal and new speech enhancement techniques.
The Bandwidth Extension Support feature allows developers to enhance the audio quality on the receiver side during calls. This can be configured both before making a call and while in a call. This gives better calling experience to calling users when they talk to Non-Webex users such as PSTN/Phones etc..
These APIs should be set before making a call.
This method enables or disables the legacy receiver-side noise removal. By default, the <B new receiver-side speech enhancement is enabled./B>
// Enable legacy receiver noise removal
Webex.phone.useLegacyReceiverNoiseRemoval(useLegacy: true)
// Disable legacy receiver noise removal to use new speech enhancement
Webex.phone.useLegacyReceiverNoiseRemoval(useLegacy: false)
This property returns true
if speech enhancement is enabled by default for all calls, otherwise returns false
.
// Check if speech enhancement is enabled by default
let isEnabled = Webex.phone.isReceiverSpeechEnhancementEnabled
print("Is speech enhancement enabled by default: \(isEnabled)")
This method enables or disables speech enhancement by default for all calls. It is applicable for WebexCalling and CUCM calling.
// Enable speech enhancement by default for all calls
Webex.phone.enableReceiverSpeechEnhancement(shouldEnable: true) { result in
switch result {
case .success:
print("Speech enhancement enabled by default")
case .failure(let error):
print("Failed to enable speech enhancement: \(error)")
}
}
// Disable speech enhancement by default for all calls
Webex.phone.enableReceiverSpeechEnhancement(shouldEnable: false) { result in
switch result {
case .success:
print("Speech enhancement disabled by default")
case .failure(let error):
print("Failed to disable speech enhancement: \(error)")
}
}
These APIs should be set while in a call.
This property returns true
if speech enhancement is enabled for the current call, otherwise returns false
.
// Check if speech enhancement is enabled for the current call
let isEnabled = Webex.call.isReceiverSpeechEnhancementEnabled
print("Is speech enhancement enabled for the call: \(isEnabled)")
This method enables or disables speech enhancement for the current call. It is applicable for WebexCalling and CUCM calling.
// Enable speech enhancement for the current call
Webex.call.enableReceiverSpeechEnhancement(shouldEnable: true) { result in
switch result {
case .success:
print("Speech enhancement enabled for the call")
case .failure(let error):
print("Failed to enable speech enhancement: \(error)")
}
}
// Disable speech enhancement for the current call
Webex.call.enableReceiverSpeechEnhancement(shouldEnable: false) { result in
switch result {
case .success:
print("Speech enhancement disabled for the call")
case .failure(let error):
print("Failed to disable speech enhancement: \(error)")
}
}
The Bandwidth Extension Support feature in the iOS SDK provides developers with the tools to enhance audio quality on the receiver side for Webex and PSTN calls. By using the provided APIs, developers can enable or disable legacy noise removal and new speech enhancement techniques as needed.