How to start play and seek to a timestamp wth API?
-
I’m trying to add links that when clicked will start playing the video and jump to a timestamp in the video. I’ve tried this code but it does not seem to be working,
if( typeof(flowplayer) != "undefined" ) { jQuery(document).on("click", "#ts1", function (e) { flowplayer(function (api, root) { api.bind("ready", function (e, api) { api.play(); api.seek(200); }); }); }); }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to start play and seek to a timestamp wth API?’ is closed to new replies.