AIFF to MP3 Converter
Drop or select an AIFF file to inspect its details, then copy the FFmpeg command to convert it to MP3.
Drop your AIFF file here, or browse
.aiff and .aif files — nothing is uploaded
File Details
- Filename
- File size
- Format
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 libmp3lame -b:a 192k "output.mp3"
Batch Convert (Linux / macOS)
for f in *.aiff; do
ffmpeg -i "$f" -codec:a libmp3lame -b:a 192k "${f%.aiff}.mp3"
done
Batch Convert (Windows CMD)
for %f in (*.aiff) do ffmpeg -i "%f" -codec:a libmp3lame -b:a 192k "%~nf.mp3"
Summary
Drop or select an AIFF file to inspect its details, then copy the FFmpeg command to convert it to MP3.
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 MP3 bitrate (128, 192, or 320 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 MP3 for streaming or distribution.
- Reduce file size before uploading tracks to SoundCloud or Spotify.
- Batch-convert multiple AIFF files using the same FFmpeg pattern.
- Share audio with collaborators who need a smaller, widely supported format.
- Archive large AIFF masters while keeping compressed MP3 copies for everyday use.
- Convert macOS GarageBand exports from AIFF to MP3 quickly.
Frequently Asked Questions
Last updated: 2026-07-01 ·
Reviewed by Nham Vu