I want to stream a video using Video.js and HLS.js with the autoplay option enabled but my audio is always muter, is there any way to disable muted option?
AFAIK, browsers set videos on ‘mute’ by default. Did you try :
muted(false);
Hi!
Google Chrome introduced an autoplay policy with Chrome 66 and almost all other browsers have also adopted the same policy regarding autoplay.
According to this policy, autoplay is only allowed when the video is muted by default. Unless the user interacts with the webpage with a click or tap autoplay with sound is not allowed.
You can read more about the policy at the below link.
Thank you so much worked for me!