Currently, I have integrated the Jwplayer into my website for video playback. I am also incorporating Poll popups that appear at specific intervals and adjust the player's Current Time when closed.
To set the Current Time, I am using _player.setCurrentTime(time).
However, there seems to be an issue with this functionality. For example, setting the time to _player.setCurrentTime(38) actually starts playing the video from 35 seconds instead.
It works correctly when using times like: _player.setCurrentTime(40)//video starts from 40 seconds _player.setCurrentTime(35)//video starts from 35 seconds
The problem only arises with times that are not divisible by 5.
Could you please advise on how to resolve this issue? Any help would be greatly appreciated. Dalvir