How to mute the video using sinch SDK anyone knows please help. After connecting the call I can't mute it.
Asked
Active
Viewed 403 times
0

Boominathan E
- 11
- 1
-
Refer here-->https://www.sinch.com/tutorials/muting-calls-use-devices-speaker-ios/ – SmAster Aug 02 '18 at 12:36
-
I am looking for javascript webside code sinch only procide mute option for android & iOs – Boominathan E Aug 06 '18 at 04:17
1 Answers
0
You can mute/unmute the recipients <video>
element
<video class="remotevideo" id="incoming" autoplay muted></video>
Like this:
document.getElementById("incoming").muted=false;
Muting your own microphone is more complicated issue. One possible solution is to use Sinch internal instant messaging feature and send a special message to the other end. So instead of muting local microphone you tell the other end to mute remote video.

Salcci
- 11
- 2