Getting current time of embedded iframe youtube player?

javascript, jquery, youtube-api, youtube-javascript-api

Solution

This thread describes how you can get the current playing time of a video using the YouTube API Getting Current YouTube Video Time

Then maybe use setInterval() to run every second to check the value of getCurrentTime() from the API and if value = 6 set the src to the new video.

Problem

Here i have tried as follows: HTML ``` <iframe id="player" style="position: relative; height: 220px; width: 400px" src="http://www.youtube.com/embed/7a_CVFRqYv4?rel=0&amp;enablejsapi=1"></iframe> ``` Script ``` var player; function onYouTubePlayerAPIReady() {player = new YT.Player('player');} ``` Here i want to such action like when the player timing reaches 6 seconds,i want to change the src of the iframe.

Original source

Related problems