Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

6 Answers

up vote 31 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

share|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
show 2 more comments

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>
share|improve this answer
This is the only video."on end" event which works in the whole internet. Bravo! – friguron Jun 8 '12 at 15:36

Very useful documentation with test page from Apple: http://developer.apple.com/library/safari/#samplecode/HTML5VideoEventFlow/Listings/events_js.html#//apple_ref/doc/uid/DTS40010085-events_js-DontLinkElementID_5

All you wanted to know on HTML5 video events!

share|improve this answer
great material! – Santiago Rebella Oct 26 '12 at 13:14

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;
share|improve this answer
1  
So there's no event, you just have to poll for the status of ended? – UltimateBrent Apr 30 '10 at 20:28

JQUERY

$("#video1").bind("ended", function() {
   //TO DO: Your code goes here...
});

HTML

<video id="video1" width="420">
                    <source src="path/filename.mp4" type="video/mp4">
                    Your browser does not support HTML5 video.
</video>

Event types HTML Audio and Video DOM Reference

share|improve this answer

What about if the video is not in the DOM?

function privateScopeFunction(){
    var video = document.createElement('video');
    var source= document.createElement('source');
    source.src = somefile;
    video.appendChild(source);
}

document.getElementById returns nothing, but then it would. references to video in JS will fail as it stays in the function's scope...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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