videojs-offset icon indicating copy to clipboard operation
videojs-offset copied to clipboard

Display correct start (poster) image for the video sequence

Open chdh opened this issue 5 years ago • 0 comments

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));

chdh avatar Aug 20 '20 20:08 chdh