navier icon indicating copy to clipboard operation
navier copied to clipboard

Creating mpeg in windows

Open ja72 opened this issue 4 years ago • 0 comments

I was able to convert all the *.ppm files into a single .mpeg file using the convert command from ImageMagick.

The command is

convert -delay 5 *.ppm output.mpeg

or have a create-vid.bat batch file with contents

cd output
convert -delay 5 *.ppm output.mpeg
move *.mpeg ..
del /q *.ppm
cd ..

ja72 avatar Sep 19 '21 05:09 ja72