Controlbar Video Previewer Thumbnails

Video previewer using seperate thumbnails

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">
          <div id="thumbnails" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#thumbnails", {
    "clip": {
        "framesurl": "../../images/thumbnails/bbb/big_buck_bunny_400k-[index].jpeg",
        "sources": [
            {
                "src": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.webm",
                "type": "video/webm"
            },
            {
                "src": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.mp4",
                "type": "video/mp4"
            },
            {
                "src": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.ogv",
                "type": "video/ogg"
            }
        ]
    },
    "controlspreview": {
        "thumbnails": true
    },
    "share": false
});
  </script>