How to initially mute videos?
video.js
Solution
might be a bit late.
In your javascript, try:
myPlayer.muted(true);
Problem
I have tried: ``` videojs("cats").ready(function(){ myPlayer.volume(0); }); ``` ... but it did not work. I searched here and through the documents and am not finding the answer, or using the code correctly.