I'm trying to get HTML5's audio tag to work in Chrome. The following code works flawlessly in Firefox, any ideas why it isn't working in Webkit?

<html>
  <head>
    <script type="text/javascript">
    function init(){
     audio = new Audio("chat.ogg");
     audio.play(); 
    }
    </script>
</head>
<body onload="init()">
</body>

I should also note that I tried this with an mp3 as well. Regardless of what format, whenever .play() is called on audio, Chrome responds with "undefined".

link|improve this question

53% accept rate
Have you tried using the <audio> tag instead of JS? – David Johnstone Mar 11 '10 at 5:02
Yep, same result. – Ronald Mar 11 '10 at 5:06
I tried a different file, one that I didn't make and it seems to work. Not sure why the mp3s or ogg files I'm making with Audacity don't seem to be working. Weird that they work in Firefox and not Chrome too. – Ronald Mar 11 '10 at 5:26
I think there might be a bug in Chrome. It appears that if the audio file is really short it won't play, but if it is long it plays fine. – Ronald Mar 11 '10 at 5:31
feedback

3 Answers

up vote 7 down vote accepted

Bug in Chrome, possibly Webkit as well: http://code.google.com/p/chromium/issues/detail?id=25972

Short audio files won't play.

link|improve this answer
very useful to know. thanks – antony_scott Feb 4 at 21:26
feedback

Try to host your audio file somewhere and try this:

audio = new Audio('http://www.yourhosting.com/chat.ogg');
audio.play();
link|improve this answer
feedback

Are you using the release version of Chrome? With the current dev build on Linux[1], I get the same behavior as FF 3.7 alpha (well, once I unblocked it with noscript) and SeaMonkey 2.0; that is, the Ogg file plays, although not even the default controls appear. If it is a bug in Chrome or Webkit, it is apparently fixed for the next version.

[1] Chrome: 5.0.342.1 (Official Build 40461) dev, Webkit: 533.2

link|improve this answer
Yep. I'm using 5.0.342.1 dev on OSX 10.5 – Ronald Mar 11 '10 at 5:21
feedback

Your Answer

 
or
required, but never shown

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