I'm using the following code to get mic audio stream and disable automatic gain control:
const stream = await navigator.mediaDevices.getUserMedia({
audio: {
autoGainControl: false
},
video: false
});
That works fine on destkop, but when I run it within my Android app via WebView, it doesn't. It seems that AGC acts at system level on Android.
Any idea?