Step-by-step instructions
- 1
FFmpeg (command line, any OS)
Lossless conversion: `ffmpeg -i input.wav -c:a pcm_s24be output.aiff` (24-bit big-endian PCM, the AIFF standard). For 16-bit: `-c:a pcm_s16be`. Auto bit-depth match: `ffmpeg -i input.wav output.aiff`. Batch: `for f in *.wav; do ffmpeg -i "$f" "${f%.wav}.aiff"; done`.
Go to converter - 2
afconvert (Mac built-in tool)
macOS includes afconvert: `afconvert -f AIFF -d I16LE input.wav output.aiff` (16-bit). For 24-bit: `afconvert -f AIFF -d I24LE input.wav output.aiff`. No installation required on macOS — available in Terminal on any macOS version.
- 3
Audacity (GUI, any OS)
Open Audacity → Import → Audio → select WAV. File → Export → Export as AIFF. Set sample format to 16-bit or 24-bit PCM. Audacity is useful when you want to edit before converting.
- 4
SoundConverter on Linux
Install: `sudo apt install soundconverter`. Open SoundConverter → add WAV files → set output to AIFF → Convert. For command-line on Linux: FFmpeg is more reliable for AIFF-specific encoding.
Why convert WAV to AIFF?
WAV and AIFF are both uncompressed audio — perfect quality at any setting. Converting between them changes only the label on the same content.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
Is WAV or AIFF better?
Do WAV metadata tags transfer to AIFF?
Why does my AIFF play back at wrong pitch after conversion?
No account. No upload. Works in any browser.