I'm trying to use media source with source buffer on a fragmented mp4 file, I want to start the video at a specific time, say 10 second. I'm not able to find any example as such using sourcebuffer and media source.
I'm able to stream the video from 0th second to full, I need help in starting video playback from a desired timestamp
I tried with sourceBuffer.appendWindowStart, / sourceBuffer.timestampOffset that was not working as expected, or maybe my understanding of it is not correct.
I'm trying to follow this example, in this codesandbox
You can always change the video.currentTime on line 46 of the example you reference (before doing video.play()).
The system will start playing video once you have appended segments that refer to that timestamp.