Thanks!
ffmpeg -i image-%04d.png anim.mp4
You can use imagemagick ('convert' command) to make small gifs with dither, color reduction: convert image-*.png +dither -colors 10 dither.gif
convert image-*.png -ordered-dither 2x2 ordered_dither2.gif
convert image-*.png -ordered-dither 4x4 ordered_dither4.gif
convert image-*.png -colors 10 less_colors.gif
On Linux/macOS CLI, I like ffmpeg and ImageMagick, as appropriate.