### Generating MP4 movies Note that when running on Irene the [ffmpeg](https://www.ffmpeg.org/) MP4 encoder is not available and the logfile will contain the warning: ~~~bash open_image(): cannot find 'ppm2mp4' or 'ffmpeg'/'avconv' falling back to raw PPM outputs ~~~ The MP4 files defined above will be renamed `movie.mp4.ppm` and `l2.mp4.ppm`. As the extension indicates, these (large) files are now raw (uncompressed) PPM images. To convert them to compressed MP4, you will need to copy them to a machine where ffmpeg (and Basilisk) are installed (i.e. your local machine) and do: ~~~bash ppm2mp4 movie.mp4 < movie.mp4.ppm ppm2mp4 l2.mp4 < l2.mp4.ppm ~~~
Stéphane Zaleski