Hi guys
I am using this following html5 video tag to play various file formats of the same video on different browsers. On my local machine all the videos are playing fine but after uploading them, firefox cannot play movie.ogv on the online server.
<video width="320" height="240" controls poster="logo.png">
<source src="movie.mp4" type="video/mp4" />
<source src="movie.webm" type="video/webm" />
<source src="movie.ogv" type="video/ogg" />
<embed src="movie.swf" type="application/x-shockwave-flash" width="300" height="300" allowscriptaccess="always" allowfullscreen="true" ></embed>
</video>
Any help