I'm getting images from html canvas and would like to convert these images into a video. Search long and hard. Just want to take a couple of images and make them into a video. I manage to pass multiple images to a library engine and it return me a arraybuffer.
My question:
How can I take a arraybuffer and play it in a video tag or convert it so it can play.
On Request:
//You can simply call:
var frames = [];//array to hold each image/frame url
frames.push(canvas.toDataURL('image/png'));//get the data url from canvas
But my question concern more of using arraybuffer as a uri for a video tag.