video mute and unmute

Solutions on MaxInterview for video mute and unmute by the best coders in the world

showing results for - "video mute and unmute"
June
28 Apr 2020
1function toggleMute() {
2
3  var video=document.getElementById("myVideo");
4
5  video.muted = !video.muted;
6
7}
8