How do you detect when a HTML5 <video> element has finished playing? I found a spec mentioning an ended event, but I don't really know how to interact with it.

Thanks!

link|improve this question

feedback

3 Answers

up vote 19 down vote accepted

Have a look at this post at the Opera Dev site under the "I want to roll my own controls" section.

This is the pertinent section:

<video src="video.ogv">
     video not supported
</video>

then you can use:

<script>
    var video = document.getElementsByTagName('video')[0];

    video.onended = function(e) {
      /*Do things here!*/
    }
</script>

EDIT: In response to the comment, onended is a HTML5 standard event on all media elements. See the W3 spec at the following address: http://www.w3schools.com/html5/html5_ref_eventattributes.asp

This event will work on all HTML5 compatible browsers.

HTH

EDIT2:
This is a link to the full list of HTMl5 media element (video/audio) events: http://www.w3.org/TR/html5/video.html#mediaevents

link|improve this answer
Is that browser specific? – UltimateBrent Apr 30 '10 at 21:06
I've update my answer with more info. – Alastair Pitts May 1 '10 at 3:00
Thanks! That should do it! – UltimateBrent May 3 '10 at 18:22
I've tried to catch "ended" event exactly the same way, as you presented, but this event is not firing. I'm under Safari 5.0.4 (6533.20.27) – AntonAL Apr 11 '11 at 15:25
@AntonAL: I'd post this as a new question if you are having issues. – Alastair Pitts Apr 17 '11 at 22:44
feedback

You can add an event listener with 'ended' as first param

Like this :

<video src="video.ogv" id="myVideo">
  video not supported
</video>

<script type='text/javascript'>
    document.getElementById('myVideo').addEventListener('ended',myHandler,false);
    function myHandler(e) {
        if(!e) { e = window.event; }
        // What you want to do after the event
    }
</script>
link|improve this answer
feedback

The tag <video> is a media content that have the following attributes.

           attribute float currentTime;
  readonly attribute float startTime;
  readonly attribute float duration;
  readonly attribute boolean paused;
           attribute float defaultPlaybackRate;
           attribute float playbackRate;
  readonly attribute TimeRanges played;
  readonly attribute TimeRanges seekable;
  readonly attribute boolean ended; 
           attribute boolean autoplay;
           attribute boolean loop;
link|improve this answer
So there's no event, you just have to poll for the status of ended? – UltimateBrent Apr 30 '10 at 20:28
feedback

Your Answer

 
or
required, but never shown

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