Create a bunch of thumbnails of your video in any way. Once you have all your thumbs up from the video, you can use something like this, which detects mouse movement and replaces thumbnails based on erasing motion - pointing.
Example 1: http://codepen.io/simsketch/pen/gwJBRg
Example 2: http://jsfiddle.net/simsketch/x4ko1x1w/
or for something less detailed, if you want to horizontally combine all the thumbnails into a sprite, you can use this, another great example of a hover scrub.
http://jsfiddle.net/simsketch/r6wz0nz6/152/
but you need to bind the event to mousedown instead of mousemove
this does not give you the desired effect, so you need to combine mousedown and mousemove as suggested here: fooobar.com/questions/197038 / ...
this will somewhat give you the effect you are looking for, but without using HTML5 video and without sound.
however, you can add sound if you attach the mouse movement to a temporary code in the soundtrack, I suppose. at this point, you could probably just as easily manipulate the video track.
source share