我的浏览器是Chrome。我知道要让它自动播放,该属性应该只是简单地读取“自动播放”,但它不起作用。
<video id="example_video_1" class="video-js vjs-default-skin" controls autoplay preload="auto" width="620" height="350" data-setup="{}">
<source src="http://x.com/something.mp4" type='video/mp4' />
</video>
答案 0 :(得分:0)
大多数浏览器要求视频由用户启动或静音。
尝试:
<video id="example_video_1" muted="muted" class="video-js vjs-default-skin" controls autoplay preload="auto" width="620" height="350" data-setup="{}">
<source src="http://x.com/something.mp4" type='video/mp4' />
</video>