So as the question states, I would like to add thumbnails to my html5 video seekbar. I would like to do this using a webvtt file.
My html5 video code...
<video controls>
<source src="video.mp4" type="video/mp4" >
<track src="video.vtt" kind="metadata" default>
</video>
Could anyone show me an example of the javascript needed to make this work please?
An example of what I'm wanting to do is already done on the JWPlayer here.