You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to use seeking/seeked events with the youtube plugin and getting nothing returned.
videojs("videoplayer").ready(function(){this.on("play",function(){// worksthat.handleStateChange(that.STATES.PLAYING);});this.on("pause",function(){// worksthat.handleStateChange(that.STATES.PAUSED);});this.on("seeked",function(){// doesn't seem to workconsole.log("Seeking");// this doesn't get firedthat.handleStateChange(that.STATES.SEEKING);});});
@clementoriol I used 'durationchange' as a workaround, its the closest thing I can find to the seek events but fires a little too many times. Only other solution is to write your own event handler..
Trying to use seeking/seeked events with the youtube plugin and getting nothing returned.
Am I doing something wrong here?
Please advise - thanks!
The text was updated successfully, but these errors were encountered: