Hello
I have the following code in an HTML5 page, but the video is not showing on the page:
<object type="application/x-shockwave-flash" data="diver_test.flv" width="275" height="240">
<param name="autostart" value="0">
<param name="uiMode" value="full">
<param name="autosize" value="1">
<param name="playcount" value="1">
<param name="controls" value="1">
<param name="ShowStatusBar" value="True">
<video id="movie4" src="diver_test.wmv" width=275 height=240 preload=none></video>
<video id="movie5" src="diver_test.mp4" width=275 height=240 preload=none></video>
<video id="movie6" src="diver_test.ogv" width=275 height=240 preload=none></video>
<video id="movie7" src="diver_test.webm" width=275 height=240 preload=none></video>
<embed type="application/x-shockwave-flash" src="diver_test.flv" width="275" height="240" autostart="true" controls="true"
pluginspage="http://get.adobe.com/flashplayer/">
</object>
What am I obviously not doing right?
Thank you.