I\'m currently working on webrtc project, and having a problem with audio echo when not using an earphone, or external mic, is there any work around or fix for this
I had the same trouble even with the video echoCancellation constraint
I could finally delete the echo/noise adding the property muted="true"
to your local video element and set up the volume to 0 document.getElementById("localVideo").volume = 0
That will not prevent your localStream to have the sound but it'll cancel the noise you have locally.