Reputation: 63
I can't seem to get the HTML5 video working on the latest version of Mozilla Firefox. It's working on Internet Explorer, Chrome and Safari. Here's the source code
<video id="video" muted autoplay poster="uploads/toaf-video.jpg" controls loop="loop">
<source src="uploads/toaf2014.mp4" type="video/mp4" />
</video>
Thanks,
Upvotes: 0
Views: 295
Reputation: 6834
Try supplying multiple formats to overcome format compatibility differences in different browsers.
<video id="video" muted autoplay poster="uploads/toaf-video.jpg" controls loop="loop">
<source src="uploads/toaf2014.mp4" type="video/mp4">
<source src="uploads/toaf2014.ogg" type="video/ogg">
<source src="uploads/toaf2014.webm" type="video/webm" />
Your browser does not support HTML5 video.
</video>
Why Different formats?
ogv
Or Use the flash video to support all major browsers.
Upvotes: 2