I have an audio object with two sources, in M4A and OGG formats.

The code is as follows:

<audio id="audio1" controls="controls" preload="none">
<source src="music.m4a" />
<source src="music.ogg" />
</audio>

I can then call document.getElementById('audio1').play() and it starts playing.

It works well in all browsers. But in Safari, it only works if the M4A file is the first source.

I.e. if I have this code with OGG file first:

<audio id="audio1" controls="controls" preload="none">
<source src="music.ogg" />
<source src="music.m4a" />
</audio>

Safari won't react to the play() JavaScript call, only to the mouse click on the play button.

Is there any solution to this apart from always putting the M4A file first?

Thanks!

link|improve this question
feedback

1 Answer

Have you tried telling the browser what MIME type you're using.

Use "audio/mp4" as the MIME type (don't forget to add it to your .htaccess)

<audio id="audio1" controls="controls" preload="none">
<source src="music.oga" type="audio/ogg" />
<source src="music.m4a" type="audio/mp4" />
</audio>
link|improve this answer
BTW notice I used music.oga , apparently we're suppose to be using oga for OGG audio and ogv for OGG video. – Julien Etienne May 30 '11 at 0:11
Yes, I did try specifying MIME types. But it's acknowledged by Apple as a bug. – Artemiy Pavlov May 30 '11 at 5:07
feedback

Your Answer

 
or
required, but never shown

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