Closed
Description
Is there an accepted way to begin playback not from the beginning of the video? For example let's say we want to bookmark a place in the video so we know that last time a user played they stopped playing at 30 seconds into the video. One way we could do this is add an event listener for 'loadedmetadata' and then set video.currentTime = 30. This works but there is a significant delay in starting playback when we do this vs letting it start from the beginning. It looks like it starts loading chunks from the beginning of the video regardless of where we set the time. Is there a way to dictate ahead of time that this is where we want to start, so just start getting junks from this point onward?