Video Snapshot Thumbnails

Thumbnail resizing with Video Snapshot

This example demonstrates generated an image capture and a thumbnail capture.

To enable the thumbnail capture configure the dimensons config with a thumbnail size property.

    <div class="flex w-full h-auto my-auto">
      <video class="video-js vjs-default-skin vjs-fluid is-snapshot" crossorigin="anonymous" controls="" id="thumbnails"></video>
  </div>
  <script type="text/javascript">
  	var player = videojs("thumbnails", {
    "plugins": {
        "snapshot": {
            "dimensions": [
                {
                    "thumbnail": true,
                    "width": 180
                }
            ],
            "serverurl": "https://api.electroteque.org/save",
            "tokenurl": "https://api.electroteque.org/token"
        }
    },
    "snapshotnames": [
        "test2.jpg",
        "test2-thumb.jpg"
    ],
    "sources": [
        {
            "src": "https://videos.electroteque.org/bitrate/elephants_dream_2000k.webm",
            "type": "video/webm"
        },
        {
            "src": "https://videos.electroteque.org/bitrate/elephants_dream_2000k.mp4",
            "type": "video/mp4"
        },
        {
            "src": "https://videos.electroteque.org/bitrate/elephants_dream_2000k.ogv",
            "type": "video/ogg"
        }
    ]
});




      player.on("capturecomplete", function(api, data) {
console.log("Capture Complete");
});
  </script>