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
Post a Comment