FlowPlayer: Is there an equivalent for the html5 "timeupdate" event, so I can get the currentTime property of flowPlayer Object? -


$("video").on('timeupdate', function() {      console.log(this.currenttime);   });

like this, how console flowplayer object currenttime?

maybe can do

flowplayer(function (api, root) {    api.on("progress", function (e, api) {       console.log(api.video.time);    }); }); 

Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -