这让我努力!

我有简单的HTML5视频播放器,不会在Android上自动播放 .

这是一个样本 . 这个WON`T自动播放

<video autoplay muted loop>
    <source src="./image/stories/boomerang_stories.mp4" type="video/mp4">
    <p>Your browser does not support the video element.</p>
</video>

http://franco.gcj.io/index2.html

奇怪的是,它是来自这里的相同代码,而且这个有效 .

<video autoplay muted loop>
   <source src="chrome-clip.mp4" type="video/mp4">
   <p>Your browser does not support the video element.</p>
</video>

https://googlechrome.github.io/samples/muted-autoplay/

我错过了一些非常明显的东西吗我能想到的唯一变量是视频大小 .