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

I was wondering, does embedding a youtube video via iframe expose certain events, like onStart or onStop, where you can specify some callback?

share|improve this question

2 Answers

up vote 3 down vote accepted

This an example to handle start and stop events:

HTML file (index.html):

<!DOCTYPE html>
<html>
    <head>
        <title>Stackoverflow</title>
        <script type="text/javascript" src="http://www.youtube.com/player_api"> </script>
        <script type="text/javascript" src="sof.js"> </script>
    </head>
    <body>
        <div id="player"></div>
    </body>
</html>

And the javascript (sof.js):

var player;
// This function creates an <iframe> (and YouTube player)
// after the API code downloads.
function onYouTubePlayerAPIReady() {
    player = new YT.Player('player', {
        height: '390',
        width: '640',
        videoId: 'u1zgFlCw8Aw',
        events: {
            'onStateChange': function (event) {
                switch (event.data) {
                    case -1:
                        console.log ('unstarted');
                        break;
                    case 0:
                        console.log ('ended');
                        break;
                    case 1:
                        console.log ('playing');
                        break;
                    case 2:
                        console.log ('paused');
                        break;
                    case 3:
                        console.log ('buffering');
                        break;
                    case 5:
                        console.log ('video cued');
                        break;
                }
            }
        }
    });
}

For each case you can set an handler.

Hope this helps you ;)

Ciao

Wilk

PS: for further infos:

  1. YT Player Getting Started
  2. YT Javascript API Events
share|improve this answer
Excelent, this is just what i needed – Ace Trajkov May 15 '12 at 9:42
1  
You are awsome Wik. +1 to this post. – Jonas T Oct 17 '12 at 3:23

The only used Events are :

1 - onStateChange 
2 - onPlaybackQualityChange 
3 - onError 
4 - onApiChange

-Event Handlers:

1- onYouTubePlayerReady(playerid)

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.