I want to get ALL the frames off a video element, show each of them on a canvas. (not miss a single frame).
I've found out I can use:
videoPlayer.currentTime = i; // (i = 0...video-size)
and than save each from with:
contextVideo.drawImage(videoPlayer, 0, 0, canvasVideo.width, canvasVideo.height);
But this causes only round-seconds frames to be saved, and I want all of them.
How can this be done ?
Is there a way to
currentTime = milliseconds;
?