Hi. I have this code to embed my video in my website. It is the method used for compatibility with IE, FF and Safari (ipad/iphone). It involves putting the object inside the video tag and having both an .ogg and an .mp4 file. For some reason, IE’s won’t play this. This works in all the other browsers. What am I missing?
<video width=“640” height=“480” controls=“true”>
<source src=‘video/Down_This_Road.mp4’ type=‘video/mp4’ />
<source src=‘video/down_this_road.ogg’ type=‘video/ogg; codecs=“theora, vorbis”’ />
<object id="flowplayer" data="flowplayer/flowplayer-3.2.4.swf" type="application/x-shockwave-flash" width="640" height="480" >
<param name="movie" value="flowplayer/flowplayer-3.2.2.swf">
<param name="allowfullscreen" value="true">
<param name="flashvars" value="config={'clip':{'url':'video/Down_This_Road.mp4','autoPlay':false}}">
</object>
</video>