Video muted html
<!-- Add the `muted` tag -->
<video muted>
...
</video>
Thankful Teira
<!-- Add the `muted` tag -->
<video muted>
...
</video>
var vid = document.getElementById("myVideo");
vid.muted = true;