If there is a video tag in the browser but auto play is set, it will not play unless muted.
The html tag looks like this:
- Doesn't play
<video id="video" src="http://....mp4" autoplay loop preload="auto" plays-inline></video>
- Play well when muted
<video id="video" src="http://....mp4" muted autoplay loop preload="auto" plays-inline></video>
Is it inevitable in the chromium browser?
- Chrome autoplay media policy
The html tag looks like this:
- Doesn't play
<video id="video" src="http://....mp4" autoplay loop preload="auto" plays-inline></video>
- Play well when muted
<video id="video" src="http://....mp4" muted autoplay loop preload="auto" plays-inline></video>
Is it inevitable in the chromium browser?
- Chrome autoplay media policy
Autoplay policy in Chrome | Blog | Chrome for Developers
Learn best practices for good user experiences with the new autoplay policies in Chrome.
developers.google.com