Hi. I was trying to take advantage of that new HTML5 <video> tag, and Firefox 3.5's native Ogg support, by embedding an .ogv video. Here is the references I used:
http://www.w3schools.com/tags/html5_video.asp
http://camendesign.com/code/video_for_everybody
Here was the code I put on my web page:
Code:
<video width="640" height="480" controls="controls">
<source src="http://path/to/uploaded/video/on/my/site.ogv" />
Your browser does not support the <code>video</code> element.
</video>
However, when I view it I get a video box, but it is grey and will not play a video. I keep playing with the various attributes but the result always seems to be the same. I also tried it on a Windows box with Firefox 3.5 (to make sure it didn't have something to do with my Linux config) but the results were the same.
What is it here that I am failing to understand?