This is driving me NUTS!
I have simple HTML5 video player that won't autoplay on Android.
Here a sample. This WON`T autoplay
<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
The bizarre thing is, it's the same code from here, and this one works.
<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/
Am I missing something really obvious? The only variable I can think about is the video size.