Convert Amiga IFF ANIM Video to MP4 with FFmpeg

Retro computing enthusiasts often need to modernize legacy media formats for sharing and preservation. This guide provides a straightforward, step-by-step tutorial on how to convert classic Amiga IFF (specifically the ANIM format, often ending in .iff or .anim) video files into the widely-compatible MP4 format using the powerful, free command-line tool FFmpeg.

Step 1: Install FFmpeg

To get started, ensure you have FFmpeg installed on your system. You can download it for Windows, macOS, or Linux from the official FFmpeg website. Verify your installation by opening your terminal or command prompt and running:

ffmpeg -version

Step 2: Locate Your Amiga IFF Video

Place your Amiga IFF/ANIM file in a convenient directory. Amiga animation files typically use the .anim or .iff extension. For this guide, we will assume your file is named input.anim.

Step 3: Run the Conversion Command

Open your terminal, navigate to the folder containing your file, and run the following command to convert the file into a standard MP4 video:

ffmpeg -i input.anim -pix_fmt yuv420p output.mp4

Explanation of the Parameters:

Advanced: Scaling and Enhancing Low-Resolution Video

Amiga animations often run at very low resolutions (such as 320x256). When played on modern screens, they can look blurry. You can upscale the video while maintaining the crisp, pixel-art aesthetic of the original using a “nearest neighbor” scaling filter.

Use the following command to upscale the video by 400% without losing sharpness:

ffmpeg -i input.anim -vf "scale=iw*4:ih*4:flags=neighbor,format=yuv420p" -c:v libx264 -crf 18 output_highres.mp4

Explanation of Advanced Parameters: