I want to create a video from sequence of images displayed on HTML.
ffmpeg may be possible but need SharedArrayBuffer
support, is it possible by using OpenCV.js?
I want to create a video from sequence of images displayed on HTML.
ffmpeg may be possible but need SharedArrayBuffer
support, is it possible by using OpenCV.js?
Xring that sounds like a lot of work just to get what is technically a Gif on screen. OpenCV is meant for AI styled work it's a bit overkill for this purpose.
How about Creating videos from images on the backend of your app and hosting that on your page. There are also a few examples of how you could do this to make gifs.
On Linux I'd cat all the images in a folder to ffmpeg like this
cat *.png | ffmpeg -f image2pipe -i - output.mp4