We're just getting started with html5 video, and cannot seem to get .ogg files to play in Firefox, any tips? Here is the source we are using:

<video width="640" height="360" poster="http://video.thewebreel.com/episode_001/episode_001.jpg" controls autoplay autobuffer>
  <source src="http://video.thewebreel.com/episode_001/episode_001.ogg" type="video/ogg" type='video/ogg; codecs="theora, vorbis"'/>
  <source src="http://video.thewebreel.com/episode_001/episode_001.mp4" type="video/mp4" />
</video>

The live example can be seen here:

http://thewebreel.com/2010/05/02/episode-1.html

However we are totally baffled, everything seems exactly right.

link|improve this question

1  
Duplicate of stackoverflow.com/questions/2643447/… – hsivonen May 3 '10 at 7:13
Why do you have two type attributes on the first source? – Ms2ger May 3 '10 at 17:23
copy/paste error, that wasn't the issue it seems, but thanks for noticing. – Joseph Silvashy May 3 '10 at 17:26
feedback

2 Answers

up vote 12 down vote accepted

I uploaded your .ogg to my server suspecting it was a server issue and it's working fine on my server

I'm guessing it's because your web server is replying with

Content-type: binary/octet-stream

Try adding the mime types to nginx...

Open up the Nginx mime type configuration file, eg: /etc/nginx/mime.types

Add these lines after the last video mime type

video/ogg                             ogm;
video/ogg                             ogv;
video/ogg                             ogg;
link|improve this answer
I'm using Amazon S3, do you think I should use: video/ogg or application/ogg for some reason their docs say application/ogg I'm not really clear, thanks again! – Joseph Silvashy May 4 '10 at 4:54
i'd try application/ogg since that's what their docs say. my server replies with that and it works. – Galen May 4 '10 at 15:02
1  
application/ogg should work (and used to be recommended), but technically nowadays you should use video/ogg. blog.gingertech.net/2008/09/05/new-ogg-mime-types-ratified – Kelly Clowers May 5 '10 at 17:53
1  
I’d also add audio/ogg mime-type for the .oga extension for good measure. :) – Jeremy Visser Jun 28 '10 at 12:34
feedback

Ogg videos play were playing on Firefox 3.6 but not 4.0.

Here's the solution: video autobuffer controls preload="auto" instead of video controls preload="none"

This works in Firefox 3.6 and 4.0 and now MSIE 9!

link|improve this answer
lol, totally, html5 video support has a long way to go, its sad that the barriers are licensing, its resulting in a crappier experience for everyone. – Joseph Silvashy Apr 20 '11 at 3:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.