Hi I have read the stuff on html 5 and video tag but I can not get it to work on firefox 3.6.4 it works fine in safair 5 can someone take a look and let me no what i am doing wrong?
My site:
http://web.me.com/soboku1/joey/stuff.htmlhere is the code I am using.
<html>
<head>
<title></title>
<script src="http://web.me.com/soboku1/zencoder/video.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
// If using jQuery
// $(function(){
// VideoJS.setup();
// })
window.onload = function(){
VideoJS.setup();
}
</script>
<link rel="stylesheet" href="http://web.me.com/soboku1/zencoder/video-js.css" type="text/css" media="screen" title="Video JS" charset="utf-8">
</head>
<body id="body">
<div class="video-js-box">
<video id="video" class="video-js" width="340" height="264" poster="URLtoPreviewImage.png" autobuffer>
<source src="http://web.me.com/soboku1/media/OMG cat meets the Dramatic Lemur.mp4" type="video/mp4">
<source src="http://web.me.com/soboku1/media/OMG cat meets the Dramatic Lemur.ogv" type="video/ogg">
<object width="340" height="264" type="application/x-shockwave-flash"
data="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf">
<param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf" />
<param name="allowfullscreen" value="true" />
<param name="flashvars" value='config={"clip":"http://web.me.com/soboku1/media/OMG cat meets the Dramatic Lemur.swf"}' />
<img src="URLtoPreviewImage.png" width="340" height="264" alt="Poster Image" title="No video playback capabilities." />
</object>
</video>
</div>
</body>
</html>
Thank you for any help you can give me.
joey