The way to achieve this is indeed to do with the getCurrentTime method on the yt api, specifically, call it in a repeating function with the help of setInterval.
You will need to keep an array of overlays you wish to present, along with the from and to time, something like:
var overlays = [
{text:"Some text",from:1,to:6},
{text:"Some other text",from:8,to:14}];
Then, you'll need a couple of functions to handle the movie playing and stoping (or pausing).
var watchId;
function startWatch(){
watchId = setInterval( function(){
showOrHideOverlay(ytplayer.getCurrentTime());
},1000)
}
function stopWatch(){
clearTimeout(watchId);
}
You'll notice that uses a variable ytplayer and according to the jsapi documentation this can be grabbed using the following code:
var ytplayer ;
function onYouTubePlayerReady(playerId) {
ytplayer = document.getElementById("myytplayer");
ytplayer.addEventListener("onStateChange", "onytplayerStateChange");
}
Notice in there ive attached an event listener, this leads us to a method to handle the movie state changing
function onytplayerStateChange(newState) {
if(newState == 1){ // playing
startWatch()
}
else if(newState == 0 || newState == 2){ //ended or paused
stopWatch();
}
}
So the last piece of the puzzle is actually handling a "tick" which ive set to occur every second. This method showOrHideOverlay looks like:
function showOrHideOverlay(time){
// find overlays which should be visible at "time"
var shownOverlays = false;
for(var i=0;i<overlays.length;i++){
if(overlays[i].from < time && overlays[i].to > time){
$('#overlay').text(overlays[i].text);
shownOverlays = true;
}
}
if(!shownOverlays)
$('#overlay').text("");
}
Finally, the live example: http://jsfiddle.net/zTZjU/ (Just press play on the clip)