-
Hello community, I have been looking for a solution to the following problem for some time now:
In other words: General question: On the demo from “borismus” the issue is visible: Many thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hello together, |
Beta Was this translation helpful? Give feedback.
-
These constraints are part of the Media Capture and Streams spec: The MediaStreamAudioDestinationNode definition already links to Media Capture and Streams for the definition of I'm glad that you got help on Slack, and thanks for posting the solution. I will move this issue to the discussion board, so that it can potentially help others with the same problem. |
Beta Was this translation helpful? Give feedback.
Hello together,
in the meantime, I have received help at slack.com.
The issue is that when using:
getUserMedia({audio: true})
audio-pre-processing is standardly activated.
To switch off pre-processing you can use:
getUserMedia({audio: {autoGainControl: false, echoCancellation: false, noiseSuppression: false} })
BR Adazus