Setting the video seconds with setCurrentTime() and playing the video after that should play the video from the previously set time
Setting the video seconds with setCurrentTime() works and sets the video to the 10th second. Clicking the 'play' button on the player after that, however, always plays the video from the beginning.
Here is a JSFiddle link to see that - http://jsfiddle.net/etgk7dcq/
P.S. I don't want to autoplay the video after setting the time. I want the users to be able to play the video (if they want) from where they left off.
Thanks for the report, I am able to replicate.
Thanks for the report, I am able to replicate.
Good to know that. Will be following. Let me know if I can assist or provide more information.
Hey @fisherinnovation, any updates on the issue?
Managed to apply a 'fix' to get this working for my case right now. I wrapped the .setCurrentTime() in a setTimeout() of 500ms.
Not the prettiest of solutions, but it gets the job done for me.
+1 to implement a fix on this one