vote up 7 vote down star
1

Which browsers support the html 5 <audio> tag on Windows today?

Edit: Trying http://moztw.org/demo/audioplayer/ as a test. Chrome 2, and Safari 4 not working for me.

flag

40% accept rate
3  
Good question. I'm not sure why people are voting to close, knowing which browsers to target is definitely programming related. – Jon Tackabury Jun 17 at 14:06
You could have used back-ticks to make the <audio> as code, or else used html entities. The editor allows HTML formatting. Not SO's fault you don't know how it works. – Mr. Shiny and New Jun 17 at 14:06
To be clear, I'm trying to find one that works with moztw.org/demo/audioplayer – Benji Jun 17 at 14:08
The wiki article I linked to below lists some newer browsers as "partial" support for the audio tag. You'd have to test and see what "partial" means exactly. :) – Jon Tackabury Jun 17 at 14:09
Mr Shiny and New, it works in the title, it works in the <comments> so yeah, its SO's fault. – Benji Jun 17 at 14:09

8 Answers

vote up 0 vote down

opera 10 and ff 3.5 , don't know about safari

link|flag
vote up 0 vote down

I'm sure of Safari 4, Firefox 3.5 from RC1 and maybe Chrome 2.

link|flag
vote up 0 vote down

As far as i know it is supported either partially or fully in the gecko, webkit and presto engines.

So any browser which uses an up to date version of those engines should support it.

link|flag
vote up 2 vote down

Here is a wikipedia article comparing each browser's HTML5 support: http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(HTML_5)

link|flag
That fooled me as well, since there is no mention of versions in that article. Besides, I'm hearing alot about html 5 <video> support these days, so either that page is wrong, or its out of date? – Benji Jun 17 at 14:13
vote up 0 vote down

Gecko, Webkit and Presto engines are suppose to support it, but I think only partly. So Firefox 3.5 and Opera are your best bet.

link|flag
vote up 0 vote down

The page (moztw.org/demo/audioplayer) works OK in Chrome 3 (dev channel)

link|flag
vote up 2 vote down

Safari 3.1+ and Firefox 3.5 both support the audio element. Opera 10 does not support the audio element though it does support an older version of it in the form of an Audio object. Chrome 3 will likely support the audio element.

(Just saw you wanted to know support for that specific page. That mostly depends on the codecs you are using I'm afraid.)

(Disclaimer: I work for Opera and am a member of the HTML WG.)

link|flag
+1: Most useful answer given. – musicfreak Jun 17 at 19:24
Cheers. However, I tried safari 4 on the Moz page and it doesn't seem to work. If you have time, could you please confirm? – Benji Jun 17 at 23:39
As I suspected the reason is codecs. Safari uses QuickTime which by default does not support the Ogg/Theora/Vorbis codecs Firefox 3.5 does ship with. You will need to install xiph.org/quicktime/download.html and then it should work as far as I can tell. – Anne Jun 19 at 15:55
vote up 0 vote down

if this evaluates to true:

!!document.createElement('audio').canPlayType

, then you have audio tag support in your browser. Doing a feature detect like this is a lot better than parsing userAgent strings.

Alternatively, you can use something like Modernizr to handle this detect and many others for you.

link|flag

Your Answer

Get an OpenID
or

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