what exactly is the "onSoundComplete" event in jPlayer?
here is demo:http://sethaldridge.com/demos/
I don't know if there is such event in html5 audio.
I'm trying to push stream song by song to html5 audio with node.js.
It's an event used for the jplayer flash player. There's no onSoundComplete event in the HTML5 audio api. It's used with mp3 files to signal the end of the file. The closest equivalent I imagine would be the ended event which is triggered when a media resource has completed. Is it feasible to request the next resource in your ended handler from the client side?
精彩评论