Sound options
By default, Zoom uses noise suppression and echo cancellation to improve the quality of the audio received by your microphone, but these audio filters can interfere with situations that require capturing the full range of audio. See Configuring professional audio settings for Zoom Meetings for details.
Video SDK uses the same technology to improve audio quality, but also supports the ability to turn off these filters to capture the original sound of the microphone, for example, to support the use of a high-quality microphone with built-in audio filters or to capture the full audio range without noise suppression. Capturing the microphone's original sound disables the background noise suppression feature.
Original sound
To enable original sound, set enableMicOriginalInput to true (YES) in the ZMVideoSDKAudioSettingHelper class. The default setting is false (NO).
ZMVideoSDKAudioSettingHelper *audioSettingHelper = [[ZMVideoSDK sharedVideoSDK] getAudioSettingHelper];
[audioSettingHelper enableMicOriginalInput:YES];
To disable, set enableMicOriginalInput to false (NO).
[audioSettingHelper enableMicOriginalInput:NO];
Background noise suppression
By default, Zoom Video SDK's standard optimized audio is used for processing your microphone audio. This includes some background noise suppression and is best for most situations, but the level of background noise suppression can be adjusted to suit your needs.
Set the noise suppression level using setSuppressBackgroundNoiseLevel in the ZMVideoSDKAudioSettingHelper class.
ZMVideoSDKAudioSettingHelper *audioSettingHelper = [[ZMVideoSDK sharedVideoSDK] getAudioSettingHelper];
[audioSettingHelper setSuppressBackgroundNoiseLevel: ZMVideoSDKSuppressBackgroundNoiseLevel_High];
You can choose from the following levels:
ZMVideoSDKSuppressBackgroundNoiseLevel_Auto(the default setting)ZMVideoSDKSuppressBackgroundNoiseLevel_LowZMVideoSDKSuppressBackgroundNoiseLevel_MediumZMVideoSDKSuppressBackgroundNoiseLevel_High