AIFF to AAC Converter
Drop or select an AIFF file to inspect its details, then copy the FFmpeg command to convert it to AAC.
Drop your AIFF file here, or browse
.aiff and .aif files — nothing is uploaded
File Details
- Filename
- File size
- Format
- Est. duration
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.aac"
Batch Convert (Linux / macOS)
for f in *.aiff; do
ffmpeg -i "$f" -codec:a aac -b:a 128k "${f%.aiff}.aac"
done
Batch Convert (Windows CMD)
for %f in (*.aiff) do ffmpeg -i "%f" -codec:a aac -b:a 128k "%~nf.aac"
About AIFF and AAC
AIFF
Uncompressed Apple format. Lossless, large files. Common in GarageBand and Pro Tools on macOS.
AAC
Lossy compressed format with better quality than MP3 at the same bitrate. Default for Apple Music, iTunes, and iOS.
Converting AIFF to AAC is a one-way lossy process. Keep your AIFF originals if you need lossless copies.
Summary
Drop or select an AIFF file to inspect its details, then copy the FFmpeg command to convert it to AAC.
How it works
- Select or drag-and-drop your AIFF file into the drop zone.
- The tool reads the filename and size locally — nothing is uploaded.
- Choose your target AAC bitrate (96, 128, 192, or 256 kbps).
- Click "Copy Command" to copy the FFmpeg command to your clipboard.
- Paste the command in your terminal and run it to convert the file.
Use cases
- Convert studio AIFF recordings to AAC for Apple Music or iTunes.
- Reduce file size before uploading tracks to streaming platforms.
- Batch-convert multiple AIFF files using the same FFmpeg pattern.
- Create AAC files for use in iOS/macOS apps or video projects.
- Archive large AIFF masters while keeping compressed AAC copies for everyday use.
- Convert macOS GarageBand AIFF exports to AAC quickly.
- Prepare audio for podcast distribution in AAC format.
- Optimize audio for mobile playback with efficient AAC encoding.
Frequently Asked Questions
Last updated: 2026-07-01 ·
Reviewed by Nham Vu