This example demonstrates using spritesheets of thumbnails which is the default option.
<div class="flex w-full">
<div id="spritesheets" class=""></div>
</div>
<script type="text/javascript">
var player = flowplayer("#spritesheets", {
"clip": {
"framesurl": "../../images/contactsheets/big_buck_bunny_400k-[index].jpg",
"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"
}
]
},
"share": false
});
</script>