Is it possible to handle noise and voice repeat using sendBird

when I try to call the user and the second user pick the call we both got unknown noises and voice repeat issues any solution or tip

If you are implementing in Javascript, you will note that there are two <video/> elements, one for local, and one for remote. In order to prevent the local audio from playing back in the element (echoing) you must include the attribute muted . Example: <video id="viewer_local" autoPlay muted></video> Make sure you only do this on the local element, because if you do it on the remote one also, you will not be able to hear the person you are calling.

1 Like

ok, I will try thanks.