I'm trying to embed a movie onto my html file on the web. So far the video plays as I want it to in the following browsers:
Chrome
Opera
Firefox
It's not playing on mobile devices yet, and of course not working on crappy Internet Explorer. Here is my video code. Please help me.
Code:
<video width="380" height="300" controls= "controls" tabindex = "0" poster="" autoplay="autoplay" border="1">
<source src="video/ghoops_showcase.ogv" type="video/ogg" />
<source src="video/ghoops_showcase.3gp" type="video/3gp" />
<!--<source src="video/ghoops_showcase.mp4" type="video/mp4" />--> *commented out the mp4 because it was crashing mozilla I think*
<source src="video/ghoops_showcase.webm" type="video/webm" />
<source src="video/ghoops_showcase.flv" type="video/flv" />
<source src="video/ghoops_showcase.swf" type="video/swf" />
</video>
Also here is the
live site I'm building it for...