WebRTC-Audio-Stream-Example icon indicating copy to clipboard operation
WebRTC-Audio-Stream-Example copied to clipboard

descktopCapture stream is mono

Open jmcker opened this issue 5 years ago • 1 comments

Stream received via navigator.mediaDevices.getUserMedia is mono (possibly with additional filtering).

Current constraints:

const mediaStreamConstraints = {
    audio: {
        mandatory: {
            chromeMediaSource: 'desktop',
            echoCancellation: false,
            googEchoCancellation: false,
            googAutoGainControl: false,
            googNoiseSuppression: false,
            googHighpassFilter: false,
            googTypingNoiseDetection: false,
            googAudioMirroring: false,
            googAudioMirroring: false,
            googNoiseReduction: false,
        }
    },
    video: {
        mandatory: {
            chromeMediaSource: 'desktop'
        }
    }
};

This could be a general limitation or related to: w3c/mediacapture-main#457

jmcker avatar Apr 12 '19 00:04 jmcker