View Single Post
Old 10-19-2012, 05:27 AM   PM User | #1
desmintaylor
New Coder

 
Join Date: Aug 2012
Location: Chester, Virginia
Posts: 13
Thanks: 4
Thanked 0 Times in 0 Posts
desmintaylor is an unknown quantity at this point
Embedding Video Onto My Site. Cross Browser Issues. Please help

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...
desmintaylor is offline   Reply With Quote