I am trying to download a movie from a mobile device in order to play in a browser. It works fine in Chrome and FF and IE9 (compatibility mode), but I can't get it to play in IE9 not in compatibility mode.
My embed code:
<video id='vid' class='video' width='274' height='169' controls='controls' preload='load' autoplay='autoplay'>
<source src='/videos/vid1.mov' />
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" >
<param name="src" value='/videos/vid1.mov'>
<param name="autoplay" value="true">
<param name="loop" value="false">
<param name="controller" value="true">
<embed src='/videos/vid1.mov' width="274" height="169" autoplay="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>
</object>
</video>
At first, I just tried to use the code for embedding Html5, but this did not work, so I turned it off for the object and embed, which also did not work. I found that I can combine both here: http://www.w3schools.com/html/html_videos.asp
but it still doesn't work.
After spending 2 hours searching on Google and trying various options for this, I need help!
source
share