AIFF to M4A Converter
Drop an AIFF file to inspect its size and estimate the converted M4A output size, then copy the FFmpeg command to convert it.
Drop your AIFF file here, or browse
.aiff and .aif files — nothing is uploaded
File Details
- Filename
- File size (AIFF)
- Format
- Est. duration
- Est. M4A size
Conversion Options
Or Type a Filename Manually
Use this if you already know the filename and do not want to select a file.
FFmpeg Command
ffmpeg -i "input.aiff" -codec:a aac -b:a 128k "output.m4a"
Batch Convert (Linux / macOS)
for f in *.aiff; do
ffmpeg -i "$f" -codec:a aac -b:a 128k "${f%.aiff}.m4a"
done
Batch Convert (Windows CMD)
for %f in (*.aiff) do ffmpeg -i "%f" -codec:a aac -b:a 128k "%~nf.m4a"
About AIFF and M4A
AIFF
Uncompressed Apple format. Lossless, very large files. Common in GarageBand, Logic Pro, and Pro Tools on macOS.
M4A
MPEG-4 Audio container holding AAC-encoded audio. Lossy, small files. The default format for iTunes purchases, Apple Music, and iOS.
Converting AIFF to M4A is a one-way lossy process. Keep your AIFF originals if you need lossless copies later.
Alternative Conversion Methods
- iTunes / Apple Music Go to Preferences > Files > Import Settings, choose AAC Encoder, then right-click your AIFF file and select "Create AAC Version." Output is saved as .m4a.
- Audacity Open the AIFF file, then go to File > Export > Export Audio, choose "M4A (AAC)" format. Requires the optional FFmpeg library for Audacity.
- FFmpeg (CLI) Use the command generated above. FFmpeg is free and available at ffmpeg.org for Windows, macOS, and Linux.
Summary
Drop an AIFF file to inspect its size and estimate the converted M4A output size, then copy the FFmpeg command to convert it.
How it works
- Select or drag-and-drop your AIFF file into the drop zone.
- The tool reads the filename and file size locally — nothing is uploaded.
- Choose your target AAC bitrate (96, 128, 192, or 256 kbps).
- The estimated M4A output file size is calculated automatically.
- Click "Copy Command" to copy the FFmpeg command to your clipboard.
- Paste the command in your terminal and run it to produce the M4A file.
Use cases
- Convert studio AIFF recordings to M4A for playback on iPhone, iPad, or Apple TV.
- Reduce large AIFF file sizes before uploading to iCloud Music Library.
- Prepare M4A files for podcast distribution or YouTube audio uploads.
- Archive lossless AIFF masters while keeping compressed M4A copies for everyday use.
- Batch-convert GarageBand AIFF exports to M4A using the provided shell loop.
- Create M4A files compatible with iTunes, Apple Music, and iOS media players.
- Convert AIFF samples to M4A for use in video editing projects.
- Optimize audio file sizes for mobile playback without noticeable quality loss.
Frequently Asked Questions
Last updated: 2026-07-01 ·
Reviewed by Nham Vu