WebRTC Acoustic Echo cancelation

后端 未结 3 672
一生所求
一生所求 2021-01-18 19:39

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

3条回答
  •  星月不相逢
    2021-01-18 20:31

    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.

提交回复
热议问题