I'm trying to play an HTML5 audio track a few seconds after the page has loaded using the .play() JavaScript function.

Sometimes, when the audio loads slowly, and .play() is triggered when the player looks like this: enter image description here

The audio does not play when it is buffered.

Sometimes, when the audio loads quickly and the player looks like this, .play() works fine.

enter image description here

What is the quickest way around this issue? (Using a listener? I holding out for a 'play when loaded' function).

link|improve this question

What about the autoplay attribute? w3.org/TR/html5/video.html#attr-media-autoplay – RoToRa Jul 5 '11 at 11:01
No, it needs to be triggered with JavaScript I'm afraid. Thanks – mradbourne Jul 5 '11 at 12:24
feedback

2 Answers

up vote 1 down vote accepted

This should be working:

<script language="JavaScript" type="text/javascript">
    var myAudio = document.getElementById('audio1')
    myAudio.oncanplaythrough = function () {this.play();}
</script>

<audio id="audio1" controls preload="auto" />
<audio id="audio2" controls preload="auto" oncanplaythrough="this.play();" />
link|improve this answer
feedback

If the load is successful, whether using the src attribute or using source elements, then as data is being downloaded, progress events are fired. When enough data has been loaded to determine the video's dimensions and duration, a loadedmetadata event is fired. When enough data has been loaded to render a frame, the loadeddata event is fired. When enugh data has been loaded to be able to play a little bit of the video, a canplay event is fired. When the browser determines that it can play through the whole video without stopping for downloading more data, a canplaythrough event is fired; this is also when the video starts playing if it has a autoplay attribute.

Note: Opera 10.50 doesn't try to determine when it has enough data to be able to play through, but instead just fires canplay and canplaythrough at the same time. This will probably be fixed in a future release.

If the browser decides to stop downloading data in order to save bandwidth, then it will fire a suspend event. If the server stops giving data (without closing the connection) for some reason, then after three seconds the browser fires a stalled event. If the browser is playing faster than the server is serving data, or when seeking causes the browser to wait for downloading data, a waiting event is fired.

Note: Opera 10.50 doesn't suspend downloads yet, and doesn't fire the stalled event.

If you want to have your play button disabled until the video is able to play, you can enable it on the canplay event:

<input type="button" value="Play" id="playpause" onclick="playOrPause()" disabled> video.oncanplay = function(e) { playpause.disabled = false; }

Source: http://my.opera.com/core/blog/2010/03/03/everything-you-need-to-know-about-html5-video-and-audio-2

link|improve this answer
Thanks Simon West from Reading! – mradbourne Jul 5 '11 at 11: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.