Let's assume you already have individual frames stored on your disk (e.g. output from projects 062animation, 063flame or 083animation). Now you need to encode a video-file from them. MPEG-4 encoding, AVI file-format (= AVI envelope).
We recommend command-line program ffmpeg with lots of options and able to use many popular video and audio codecs (actually there is a static-linked version of the utility with all the codecs included). Binary package for Windows is available from this page. By executing one line command you will be able to encode a video file from a sequence of raster images.
ffmpeg -framerate 30 -i out%04d.png -f avi -vcodec msmpeg4v2 -q:v 2 -y out.avi
For advanced settings try FFmpeg wiki, specific page about creating video from individual frames is called Slideshow.
Copyright (C) 2013-2020 J.Pelikán, last change: 2020-12-08 00:57:30 +0100 (Tue, 08 Dec 2020)