Two Formats For The Same PCM Data
AIFF (Audio Interchange File Format) was designed by Apple in 1988. WAV was designed by Microsoft in 1991. Both store uncompressed PCM audio. Both support 16-bit and 24-bit. Both support arbitrary sample rates. Both have metadata containers. Same audio data, different headers.
The PCM samples inside an AIFF file and a WAV file at the same bit depth and sample rate are bit-perfect identical. Convert between them with FFmpeg and the actual audio bytes don't change; only the wrapper does.
So why pick one over the other in 2026? Three reasons: tool compatibility, metadata format, and tradition.
For broader archival considerations, see Audacity Export Settings.
File Structure Differences
| Aspect | AIFF | WAV |
|---|---|---|
| Container | IFF (Apple) | RIFF (Microsoft) |
| Endianness | Big-endian | Little-endian |
| Maximum size | 4 GB (32-bit length) | 4 GB (32-bit length) |
| RF64 extension | Yes (large files) | Yes (large files) |
| Metadata format | ID3 in optional chunks | INFO chunks, ID3 also possible |
| BWF extension | AIFF-C | BWF (Broadcast WAV) |
| Loop / instrument data | Yes (sampler-friendly) | Yes (smpl chunk) |
The endianness difference is irrelevant in 2026. Modern tools convert during read and don't expose it to users. The metadata format differences matter more in production workflows.
Production Tool Defaults
| DAW | Native PCM format |
|---|---|
| Logic Pro | AIFF (default), WAV optional |
| Pro Tools | WAV (default), AIFF optional |
| Ableton Live | WAV |
| Cubase / Nuendo | WAV (BWF) |
| Reaper | WAV (configurable) |
| FL Studio | WAV |
| GarageBand | AIFF |
| Adobe Audition | WAV |
Logic Pro and GarageBand were the holdouts on AIFF. The rest of the industry standardized on WAV. In 2026, Logic still defaults to AIFF for new projects but WAV is selectable.
For mixed-platform workflows: WAV. For Mac-only sessions exchanged between Logic users: AIFF.
Broadcast Workflows
Broadcast TV and radio standardized on BWF (Broadcast WAV Format) for production deliverables. BWF adds:
- BEXT (Broadcast Extension) chunk with timecode
- LOUDNESS chunk with EBU R128 measurements
- IXML chunk with production metadata
AIFF has equivalent extensions but they're rarely used in broadcast. For broadcast deliverables: WAV (BWF).
For loudness targets and broadcast specs, see Reaper Render Presets.
Metadata Capacity
Both formats hold album/artist/title metadata, but with different richness:
AIFF metadata:
- Name (track name)
- Author
- Comment
- Annotation
- ID3v2 tags via separate chunk
WAV INFO chunk metadata:
- INAM (track name)
- IART (artist)
- IPRD (album)
- ICRD (date)
- IGNR (genre)
- ICMT (comment)
Both can also hold ID3 tags as a chunk. For best metadata compatibility across tools: ID3 tags work in both, though support varies by player.
File Size Identity
For a 4-minute song:
| Format | 16-bit 44.1 kHz | 24-bit 96 kHz |
|---|---|---|
| AIFF | 42 MB | 138 MB |
| WAV | 42 MB | 138 MB |
Identical. The audio data is the same; the wrappers add tiny overhead (a few hundred bytes).
Conversion AIFF to WAV
ffmpeg -i input.aiff -c:a copy output.wav
-c:a copy skips re-encoding. The PCM data is bit-perfect copied to the new container. Lossless and instant.
For batch:
for f in *.aiff; do
ffmpeg -i "$f" -c:a copy "${f%.aiff}.wav"
done
Our audio converter handles single-file conversions if you don't have FFmpeg.
Conversion WAV to AIFF
ffmpeg -i input.wav -c:a copy output.aiff
Same idea. Bit-perfect copy.
The endianness conversion happens transparently during the copy. Modern systems handle this in microseconds.
Compressed AIFF (AIFF-C)
AIFF-C extends AIFF to support compression:
- Linear PCM (uncompressed, default)
- µLaw (telephony)
- ALAC (Apple Lossless within an AIFF wrapper, rare)
- IMA 4:1 ADPCM (low-fidelity speech)
AIFF-C is rare in modern use. Most "AIFF" files in 2026 are uncompressed PCM. If you see AIFF-C in metadata, the file might be compressed; verify with ffprobe.
Archival Best Practices
For long-term audio archival:
| Use case | Format | Why |
|---|---|---|
| Master archive | FLAC | Lossless compression, broad future support |
| Studio session backups | WAV (BWF) | Industry standard with timecode |
| Mac-only personal collection | AIFF or ALAC | Apple ecosystem lock-in |
| Library / institutional | WAV (BWF) + FLAC | Two-format archive (uncompressed + lossless compressed) |
| Educational use | WAV | Most software supports it |
WAV is the safer institutional choice. AIFF is fine for Mac-only situations but adds friction outside Apple's ecosystem.
For background on FLAC archival considerations, see Audacity Export Settings.
Storage Considerations
Both formats hit the 4 GB single-file limit at:
- 16-bit 44.1 kHz stereo: ~6.7 hours
- 24-bit 48 kHz stereo: ~3.7 hours
- 32-bit float 96 kHz stereo: ~1.5 hours
For longer recordings, RF64 extension (a 64-bit length field in WAV) supports larger files. Many tools handle RF64 transparently.
For files over 4 GB, use RF64 WAV or split into multiple files.
Pro Tip: When archiving to long-term storage, store source format AND a FLAC version. The FLAC saves 40% storage. The WAV/AIFF original guarantees no decoder issues 20 years from now if FLAC tools become deprecated (unlikely, but possible).
Sample Rate and Bit Depth
Both formats support arbitrary sample rates and bit depths:
| Bit depth | Use case |
|---|---|
| 16-bit | CD-quality, broadest compatibility |
| 24-bit | Production master, broadcast standard |
| 32-bit float | Editing intermediate, no clipping |
| 64-bit float | Theoretical, rare in production |
For archival: 24-bit at the project sample rate (usually 48 kHz for video work, 44.1 kHz for music). 16-bit is sufficient for delivery; 24-bit for masters.
Common Issues
File won't open in older tools: AIFF-C with non-PCM compression. Convert to plain AIFF with FFmpeg.
Corrupted "extra data" warnings on import: tool doesn't recognize a chunk. Most warnings are harmless; the audio plays fine. For clean import, re-save through Audacity or another modern tool.
Sample rate detected wrong: header bug. Verify with ffprobe and re-save if needed.
Slow opens on large WAV/AIFF files: tool reads entire file into memory at open. Use streaming-capable tools (FFmpeg, Audacity) for files over 1 GB.
For broader audio bitrate context, see Audio Bitrate Quality Guide.
Frequently Asked Questions
Is AIFF a Mac-only format?
No. Most modern tools handle AIFF on Windows and Linux. The "Mac-only" reputation is from the 1990s when Windows tool support was uneven.
Should I convert my AIFF library to WAV?
If your tools work fine with AIFF: no, the conversion adds nothing. If you're shifting to a Windows or Linux DAW that has imperfect AIFF support: convert.
What's the difference between AIFF and AIFF-C?
AIFF is uncompressed. AIFF-C extends AIFF to support compressed codecs. Most "AIFF" files are uncompressed. AIFF-C is rare.
Can I add metadata to AIFF without losing audio?
Yes. Most metadata editors (Mp3tag, Tag Editor) handle AIFF tags. Both formats support ID3 tags as a chunk extension, and tools recognize them.
Is BWF safe for normal music production?
Yes. BWF is a superset of WAV. Normal music tools that read WAV will read BWF (they ignore the extra metadata chunks).
What about file fragmentation on long recordings?
Both formats are linear (samples in order). No file fragmentation issues. Modern filesystems handle even 4 GB files without performance issues.
Related Reading
Bottom Line
For modern audio archival: WAV is the safer institutional choice; AIFF works fine for Mac-only workflows. Both are uncompressed PCM with bit-perfect convertibility. Use BWF for broadcast deliverables. Pair with FLAC for compressed lossless archive. Our audio converter handles AIFF-WAV-FLAC conversions.



