Say I have an array of time in seconds.
var points = [5, 30, 50];
So when the jw player is initialized, I want to read this array and then place cue points[markers] on the timeline.
And once the seek bar reaches the cue point, I want to call a custom function that performs something.
The documentation of Jw is very plain but I found this - Adding chapter markers
I need something similar to this with full control on the cue points.
Is there any way to achieve this or should I use a custom control bar?
I implemented the same thing by pausing the video on certain points. When paused, the user can only resume the video by clicking on a link (the controls are removed when paused).
I have the following HTML where the player and the cue points HTML are placed:
And the following JavaScript: