How to disable system audio enhancements using webRTC?

4.9k views Asked by At

On different systems (Windows/Android/etc.) there are some "built-in" audio enhancements. For example AEC (autmatic echo cancellation), NR (noise reduction) and Automatic Gain Control. Everyone can have those turned off or on in any combination.

There are also audio enhancements on some browsers (i know about Chrome and Firefox)

It is possible to turn them all off using webRTC?

For all I know, it is possible to turn off those "browser enhancements" and I think I managed it by specifying mediaConstraints. Example for Chrome:

var mediaConstraints = {
    audio: {
        echoCancellation: { exact: false },
        googEchoCancellation: { exact: false },
        googAutoGainControl: { exact: false },
        googNoiseSuppression: { exact: false },
    }
}

Can't find solution to turn off system/device-specific audio enhancements. There is similar question: WebRTC - disable all audio processing, but I think it addresses only those browser enhancements.

0

There are 0 answers