Question

I have an audio tag that streams music from a web url. Once the song gets to over 30 seconds i want to get it to run a piece of code. Whats the best way to achieve this?

Était-ce utile?

La solution

Add a handler to the timeupdate event raised by the audio control. Inside the handler, look at the control's currentTime property.

var audioControl = document.getElementById('myaudio');
audioControl.ontimeupdate = function () {
    if (audioControl.currentTime >= 30) { 
        // do something
    }
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top