Initializing... drag & drop files here
Supports: AIFC
AIFC — written AIFF-C in Apple's own documentation — is not a separate audio format so much as AIFF with one extra field: a compression-type tag in the file's COMM chunk that declares how the samples are stored. Most .aifc files that come off a Mac are not compressed at all; they carry the sowt tag, which simply means "PCM, byte-swapped to little-endian". Older files can hold genuinely compressed audio instead. This converter decodes whichever variant you have and writes a standard RIFF WAV that Windows, DAWs, hardware samplers, and web players all recognise.
| Property | Value |
|---|---|
| Full name | Audio Interchange File Format — Compressed |
| Container | IFF — the chunked container Electronic Arts published as IFF in 1985 |
| Specification | AIFF v1.3 is dated January 1989; the AIFF-C extension document is dated August 1991 |
| Sample byte order | Big-endian for compression type NONE; little-endian for sowt |
| Compression types | NONE and sowt (both uncompressed PCM), fl32/fl64 (floating point), alaw/ulaw (G.711); QuickTime-era files may also use MACE 3:1 / 6:1 or IMA ADPCM |
| Bit depths | 8, 16, 24 and 32-bit integer, plus 32/64-bit float |
| Metadata chunks | NAME, AUTH, ANNO, (c) text; MARK markers; INST loop and key mapping |
| Native support | macOS, iOS, QuickTime, Logic, Pro Tools; inconsistent on Windows |
| Best for | Apple-side capture, sampler content, and archiving |
| Property | Value |
|---|---|
| Full name | Waveform Audio File Format |
| Container | RIFF — the little-endian chunk container Microsoft and IBM defined alongside it |
| Specification | Multimedia Programming Interface and Data Specifications 1.0, IBM and Microsoft, August 1991 |
| Sample byte order | Little-endian |
| Payload on this page | PCM 16-bit (default), PCM 24-bit, PCM 32-bit, plus A-law and mu-law for telephony work |
| Sample rates offered | Original, 8 kHz, 12 kHz, 16 kHz, 24 kHz, 44.1 kHz, 48 kHz |
| Metadata | LIST/INFO text chunks; no equivalent of AIFF's instrument or marker chunks |
| Size ceiling | 4 GiB, imposed by RIFF's unsigned 32-bit chunk-size fields; plenty of older software stops at 2 GiB |
| Native support | Windows, macOS, Linux, Android, Chrome, Firefox, Edge, Safari, and effectively every DAW |
.aifc files onto the page or click "+ Add Files". Several files can be queued and converted with one set of settings.Uncompressed PCM has a fixed data rate: sample rate × bytes per sample × channels. That arithmetic is the whole story for WAV sizing, and it is the same number regardless of what the audio contains.
| Output setting (44.1 kHz stereo) | Data rate | One minute | 4 GiB ceiling reached at |
|---|---|---|---|
| PCM 16-bit | 1,411 kbps | ~10.6 MB | ~6.8 hours |
| PCM 24-bit | 2,117 kbps | ~15.9 MB | ~4.5 hours |
| PCM 32-bit | 2,822 kbps | ~21.2 MB | ~3.4 hours |
| mu-law / A-law 8-bit | 706 kbps | ~5.3 MB | ~13.5 hours |
If the AIFC holds uncompressed PCM — compression type NONE or sowt, which covers the large majority of files macOS writes — the samples are decoded and written back out at the same bit depth and sample rate, so nothing is discarded. If the source used a lossy compression type such as mu-law, MACE or IMA ADPCM, decoding to PCM makes the file portable but cannot recover detail the original encoder threw away.
No, and renaming the extension is exactly what breaks these files. AIFC and WAV use different containers (IFF versus RIFF), different chunk headers, and — for the NONE compression type — opposite byte order. The audio is fully decoded and re-encoded into RIFF on our servers; the sample values survive, the file layout does not.
macOS decodes AIFF-C through Core Audio, so QuickTime, Music and Finder previews treat it as ordinary audio. Windows players, older DAWs and most web players key off the extension and simply do not register .aifc, even when the bytes inside are the same little-endian PCM a WAV would hold. Converting gives you a RIFF file those programs open without a codec pack.
The sample rate follows the source unless you change Audio Sample Rate, and the bit depth follows the Audio Codec setting — PCM 16-bit by default. Our converter writes plain interleaved PCM, so the size is pure arithmetic: at 44.1 kHz, 16-bit, stereo that is 44,100 × 2 bytes × 2 channels = 176,400 bytes per second, which puts a 3-minute track at about 31.8 MB plus a header of a few dozen bytes.
If the AIFC was uncompressed, the WAV lands within a few hundred bytes of the original — both store raw samples and only the chunk headers differ. If the AIFC used a compressed type, expect growth: 6:1 and 4:1 schemes such as MACE 6:1 or IMA ADPCM expand back to full-rate PCM, so a 5 MB compressed AIFC can become a 30 MB WAV.
Basic text metadata such as name, author and annotation can map across to WAV's LIST/INFO block, but WAV has no counterpart for AIFF's INST chunk, so sampler loop points, base note and key range are lost. If those matter — for example when moving sampler content between machines — keep the AIFC alongside the WAV.
The practical limit is upload size and time rather than anything on the decoding side, and the output side has a hard stop: RIFF stores chunk lengths in unsigned 32-bit fields, so a WAV cannot exceed 4 GiB — roughly 6.8 hours of 44.1 kHz 16-bit stereo. Long recordings that would cross that line should be split first or written at a lower sample rate.
Only when something downstream expects G.711 telephony audio — IVR prompts, PBX and SIP systems, and legacy voicemail platforms typically want 8-bit mu-law (North America and Japan) or A-law (most of the rest of the world) at 8 kHz. They halve the file size against 16-bit PCM but throw away dynamic range, so they are a poor choice for music.
Files are uploaded over an encrypted connection, processed on our servers, and deleted automatically after a few hours — no sign-up, no watermark, never shared or made public.
Going the other way, or working with a whole folder of Apple audio? See WAV to AIFC for the reverse direction, or the AIFC converter for every other target this format supports.