I must be missing something here, but i've tried to play this video through the latest versions of chrome and FF and the picture wont play, but the sound does. Initially I just called an mp4 video and nothing happened, then i converted my original file to .ogg and added the src to the ogg file to (see below) and now the sound plays but still no picture. Is .ogg just an audio file? but more pressingly how come it won't play a picture?
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
<video width="320" height="240" controls="controls">
<source src="00060.mp4" type="video/mp4" />
<source src="00060.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
</body>
</html>
Thanks in advance for any help
.oggmight be an audio file, the more usual extension for Ogg Video is.ogv. But a file extension is just a file extension, there's no guarantee it corresponds to the filetype. How did you create the.oggfile? What MIME type is your server sending the.oggfile with? – robertc Dec 8 '11 at 0:44