I am using HTML5 Video with this code:
<div id="lightBox1" class="lightBox">
<video id="video" controls preload="metadata">
<source width="100%" height="470" src="/ImageworkzAsia/video/iworkzvid.mp4" type="video/mp4">
<source width="100%" height="470" src="/ImageworkzAsia/video/iworkzvid.ogv" type="video/ogg">
<source width="100%" height="470" src="/ImageworkzAsia/video/iworkzvid.m4v" type="video/m4v">
<p style="text-align:center;">Your browser does not support HTML5 Video.</p><br />
</video>
</div>
The problem is that it does not play in Mobile Safari, but it plays on the Safari desktop. He also plays chrome, firefox, as expected. I have not tested this on an Android device yet. Any ideas?
source
share