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

How to use SUM() in MySQL for calculated values -

ios - IBOutlet for image button not correctly referencing button after recreating outlet -

java - AEM: 403 Forbidden occurs when call a Post servlet -