I have an ogg/audio file converted from mp3 using Alt WAV MP3 Ogg Converter. When I drag and drop the file in Firefox or in Google Chrome, the audio plays nicely. But when a use the following code to place the file inside a page it only works on Chrome.

My code is simple as that:

<audio controls>  
     <source src="foo.ogg" type="audio/ogg">  
</audio>

Someone can tell me why?

Thanks

link|improve this question

71% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I think you can find your answer here. In my case I had to add MIME types to our nginx server.

link|improve this answer
Thanks! Useful tip. – Juliano Feb 15 '11 at 19:42
feedback

Your Answer

 
or
required, but never shown

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