videojs-offset
videojs-offset copied to clipboard
Display correct start (poster) image for the video sequence
When the video is loaded without an explicit poster image and with autoplay = false, the first image of the entire video is displayed and not the first image of the specified video sequence (the video image at the start offset).
In my application program, I can solve this problem with the following code:
player.one("canplay", () => player.currentTime(0));