WebRTC-iOS
WebRTC-iOS copied to clipboard
By using "GoogleWebRTC", How can we avoid NOISE SUPRESSION
Hello,
Android Platform used following stuff to avoid Noise Suppression
WebRtcAudioUtils.setWebRtcBasedAcousticEchoCanceler(true); WebRtcAudioUtils.setWebRtcBasedAutomaticGainControl(true); WebRtcAudioUtils.setWebRtcBasedNoiseSuppressor(true);
For iOS Platform
Please let me know, what to use to avoid Noise Suppression and Echo Cancellation
Thanks
Hi @BrahmamM
After looking at the source code it looks like those methods are for Android only. I am not an expert on audio but I think that iOS has AVAudioSession to handle audio
Okay.. can you suggest me how to avoid noise cancellation in iOS?