chrisboustead/videojs-vtt-thumbnails

Thumbnails not appearing on seek bar

Opened this issue · 3 comments

There is an issue while hovering over the seek bar to view video thumbnails.

When you start seeking from a point where the video does not have a captured thumbnail, then for the duration that the user is still hovering over the seek bar from that position, he won’t be able to view the thumbnail even if there is one at a later point in time.

For example, there is no thumbnail at 00.01 and the first thumbnail capture is at 00:04, then if the user starts seeking at 00:01 and hovers over the seek bar to say around 00:07, he still won’t be able to view any thumbnail, until the point that he moves his/her cursor away from the seek bar and hovers over it again.

Thumbnails are not appearing at all (Video.js 7.6.)
Any chance to provide url with working example?

For me the thumbnail holder had no size, so I had to manually set it:

    <style type="text/css">
       .vjs-vtt-thumbnail-display {
            width: 160px;
            height: 90px;
        }
    </style>

For me, the thumbnails were not appearing in the right place, so I had to use margin-top: -89px to get them in the proper place..