This example demonstrates using individual video thumbnails instead of flat contactsheets where generating them is not possible. Loading times may vary.
<div class="flex w-full h-auto my-auto">
<div id="thumbnails" class=""></div>
</div>
<script type="text/javascript">
var player = jwplayer("thumbnails").setup({
"aspectratio": "16:9",
"framesurl": "../../images/thumbnails/bbb/big_buck_bunny_400k-[index].jpeg",
"playbackRateControls": true,
"plugins": {
"../../js/videopreviewer-8.1.0.js": {
"thumbnails": true
}
},
"sources": [
{
"file": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.webm",
"type": "webm"
},
{
"file": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.mp4",
"type": "mp4"
}
],
"width": "100%"
});
</script>