AudioUtils

AIFF to WAV: macOS to Windows Audio Workflow

Convert AIFF audio to WAV for Windows compatibility. Learn the AIFF vs WAV differences, what changes and what stays the same, and step-by-step conversion.

AIFF and WAV are siblings. Both are uncompressed PCM containers, both store identical audio data sample-for-sample, and both are universally considered lossless. The only practical reason to convert between them is to switch which operating system or DAW treats the file as a first-class citizen. Mac people deliver in AIFF; Windows people deliver in WAV; converting from one to the other is essentially a stream copy with a new wrapper.

AIFF and WAV Are Both Lossless PCM

The PCM samples inside an AIFF file are bit-for-bit identical to what you would get if the same audio were saved as WAV. Both formats can hold sample rates from 8 kHz up to 192 kHz, bit depths of 8, 16, 24, or 32 bits, and any channel configuration from mono to multi-channel surround. There is no audio quality difference. A 24-bit/96 kHz AIFF and a 24-bit/96 kHz WAV of the same recording sound identical and have nearly identical file sizes — about 33 MB per minute of stereo audio.

The two formats differ in three small ways. AIFF is big-endian (most significant byte first), WAV is little-endian. AIFF was developed by Apple in 1988, WAV by Microsoft and IBM in 1991, both derived from the earlier Electronic Arts IFF chunk format. And the metadata chunks each format uses have different names: AIFF uses MARK, INST, COMT, and ANNO chunks; WAV uses LIST INFO, bext (Broadcast Wave), and iXML.

For audio quality, none of those differences matter. For workflow compatibility, all of them do.

Why Convert: The Real Reasons

Windows DAW compatibility. Pro Tools on Windows reads AIFF, but Cubase, FL Studio, Reaper, Studio One, and Ableton Live all prefer WAV as their native session format on Windows. Importing AIFF works in most cases, but exports default to WAV, and project templates expect WAV. Delivering WAV to a Windows-based mix engineer avoids friction.

Broadcast workflows. The Broadcast Wave Format (BWF) extends WAV with a bext chunk that stores timecode, originator info, and history coding. EBU R128 broadcast delivery, podcast distribution to NPR-style networks, and television post-production all expect BWF. AIFF has no direct equivalent.

Game audio engines. Most middleware (FMOD, Wwise) and engines (Unity, Unreal) treat WAV as the canonical uncompressed source format. AIFF imports work but trigger an internal conversion step.

Older Windows software. Anything pre-Windows 10 may not recognize the .aif or .aiff extension by default. WAV is recognized everywhere a Microsoft codec stack exists.

Cross-platform delivery to clients. Mac users export from GarageBand, Logic, or Final Cut as AIFF by default. Windows clients receiving that file may double-click it and have nothing happen. WAV solves it.

What Conversion Actually Does

Because both formats store the same PCM data, converting AIFF to WAV is essentially a repackaging operation. A good converter (ffmpeg, dBpoweramp, XLD, the AIFF to WAV tool) does a stream copy: read PCM samples from the AIFF, swap byte order if needed, write PCM samples into a WAV container with appropriate header chunks. No re-encoding, no resampling, no quality loss. Some encoders mistakenly run the audio through a codec round-trip, which is wasted work but still lossless because PCM in equals PCM out.

What can change: metadata. AIFF MARK chunks (loop and cue points) translate to WAV cue chunks in most converters but not all. INST chunks (sampler instrument definitions) often do not survive. ANNO and COMT comments may map to WAV LIST INFO ICMT but with character-set conversion. If you depend on specific metadata fields, test one file end-to-end before batch-converting a library.

What does not change: sample rate, bit depth, channel count, or audio content. A 24-bit/48 kHz AIFF becomes a 24-bit/48 kHz WAV with byte-identical audio samples.

File Sizes Are the Same

This is the question every first-time converter asks. The answer is no, WAV is not smaller than AIFF, and AIFF is not smaller than WAV. Both store raw PCM with a small header (44 bytes for WAV, similar overhead for AIFF). One minute of stereo 16-bit/44.1 kHz audio is exactly 10.09 MB in either format. One minute of stereo 24-bit/96 kHz is 33 MB in either format. If you need smaller files, convert to FLAC (about 50–60% the size, still lossless) or to MP3 (about 10% the size, lossy).

The GarageBand and Logic Workflow

GarageBand and Logic Pro both export AIFF by default when you choose "Send to Mastering" or "Bounce > Uncompressed." If your mix is going to a Windows-based engineer, change the bounce settings to WAV before exporting, or convert the AIFF after the fact. In Logic, the Bounce dialog has a Format dropdown — switch from AIFF to WAVE. In GarageBand, the AIFF default is harder to override; bouncing then converting is often easier.

The ffmpeg One-Liner

For batch conversion or scripting:

ffmpeg -i input.aiff -c:a pcm_s16le output.wav

For 24-bit, use pcm_s24le. For 32-bit float, use pcm_f32le. The -c:a flag specifies the PCM codec — you almost always want little-endian for WAV output regardless of the AIFF source endianness. To preserve the original bit depth automatically:

ffmpeg -i input.aiff -c:a copy output.wav

The copy codec works only if the bit depth is one ffmpeg recognizes; most 16- and 24-bit AIFFs work this way and are nearly instantaneous.

Batch Conversion for Mac Users Delivering to Windows

If you regularly send audio to Windows clients, set up a batch process. ffmpeg can convert a folder in one command:

for f in *.aiff; do ffmpeg -i "$f" -c:a pcm_s24le "${f%.aiff}.wav"; done

The browser-based AIFF to WAV converter handles single files instantly without any installation, and the audio never uploads anywhere — useful for sensitive material like unreleased music or client work. For a deeper look at AIFF, see What Is AIFF. For WAV background, see What Is WAV. And if you also need an MP3 version of the same source, the AIFF to MP3 guide covers that path.

Broadcast Wave Format: When You Need More Than WAV

If your delivery target is broadcast television, radio, podcast networks like NPR, or major audiobook platforms, plain WAV is often not enough — they expect Broadcast Wave Format (BWF), an EBU-defined extension to WAV that adds a bext metadata chunk. The bext chunk stores SMPTE timecode, originator name, originator reference, creation date and time, coding history, and UMID (Unique Material Identifier). EBU R128 loudness compliance often requires the bext chunk to carry the integrated loudness measurement.

AIFF has no native equivalent. Converting AIFF to WAV is the first step; converting WAV to BWF requires a tool that writes the bext chunk (Adobe Audition, iZotope RX, ffmpeg with -metadata flags, or Sound Devices' Wave Agent for sync workflows). If your AIFF carries timecode in MARK or APPL chunks, manually transfer those values to the bext fields before delivery.

Common Pitfalls When Converting

Three things go wrong in AIFF-to-WAV workflows often enough to mention:

  • Endianness corruption. Some legacy converters fail to swap big-endian to little-endian and write WAV files with reversed sample bytes. The result plays as static. Modern tools (ffmpeg, all major DAWs, the AudioUtils browser tool) handle this correctly. If you ever hear pure noise from a "converted" WAV, check the byte order with a hex editor or re-run with a known-good tool.
  • Bit depth mismatches. A 24-bit AIFF converted with default settings in some legacy tools comes out as 16-bit WAV with the bottom 8 bits truncated. Always verify the output bit depth matches the input unless you are intentionally downsampling.
  • Metadata loss. Track names, artist credits, and embedded album art written into AIFF ID3 chunks (yes, AIFF can carry ID3v2) sometimes do not survive conversion. If metadata matters, verify it after conversion and use a tag editor (Mp3tag works on WAV) to re-apply if needed.

Quick Decision Guide

Choose AIFF when: working entirely in the Apple ecosystem, exporting from GarageBand/Logic for Apple-native delivery, or your downstream tools all read AIFF cleanly. Choose WAV when: collaborating with Windows users, delivering to broadcast or podcast networks, working in any non-Apple DAW, or sending files to clients with unknown software stacks. Choose FLAC when: the receiving system supports it and storage matters — it is half the size with bit-identical audio. Choose MP3 only when the destination requires lossy delivery.

More to Read

How to Convert Audio Files: Complete GuideHow to Reduce Audio File Size Without Losing QualityHow to Convert iPhone Voice Memo to MP3 FreeHow Audio Compression WorksBest Audio Format for WebsitesHow to Batch Convert Audio FilesHow to Extract Audio from Video FilesDoes Converting MP3 to WAV Improve Quality?How to Convert MP3 to WAV for Music ProductionHow to Convert MP3 to WAV Without Losing QualityHow to Convert MP3 to WAV on Mac and WindowsHow to Convert WAV to MP3 Without Losing QualityWAV File Too Large? Convert to MP3How to Convert iPhone Voice Memo to MP3 FreeHow to Play M4A Files on Android (Convert to MP3)How to Convert FLAC to MP3 Without Losing QualityBest Bitrate for FLAC to MP3 ConversionConvert AAC to MP3: Best Quality SettingsHow to Extract Audio from MP4 FilesConvert iPhone MOV Video to MP3How to Convert WAV to MP3 (The Complete Guide)How to Convert MOV to MP3 (iPhone & QuickTime)How to Convert MP3 to WAV for Editing and DAWsHow to Convert YouTube to MP3 Legally (3 Ways)Best MP3 to WAV Settings for Editing and DAWsBest WAV to MP3 Bitrate for Music, Podcasts, and VoiceMOV to MP3 on Mac: Fastest Ways ComparedHow to Convert M4A to MP3 on iPhone Without a ComputerHow to Convert FLAC to MP3 on MacHow to Convert FLAC to MP3 on WindowsHow to Convert OGG to MP3 on MacHow to Convert MP4 to MP3 on MacHow to Convert MP4 to MP3 on iPhoneHow to Convert MP4 to MP3 on AndroidHow to Convert WMA to MP3 on MacHow to Convert AIFF to MP3 on MacHow to Convert MOV to MP3 on WindowsM4A to WAV: How to Convert and WhyHow to Convert FLAC to OGG VorbisHow to Convert AAC to WAV for EditingHow to Convert WMA to MP3 on WindowsHow to Convert AIFF to MP3 on WindowsHow to Convert OGG to MP3 on WindowsHow to Convert FLAC to MP3 on iPhoneHow to Convert AAC to MP3 on MacHow to Convert M4A to MP3 on Mac: 3 Easy MethodsHow to Convert Audio Files with AudacityHow to Convert Audio Files with VLCFLAC to AAC: Bitrate Guide and Practical StepsOGG to AAC: Cross-Platform Audio Migration GuideWMA to OGG: Escape the Windows Media EcosystemWMA to FLAC: Lossless Archiving of Your Old WMA LibraryFLAC to Opus: Web Streaming Optimization GuideAIFF to M4A: Apple Production Workflow GuideWAV to AIFF: Windows to Mac Audio WorkflowHow to Convert AAC to MP3 on iPhoneHow to Convert FLAC to MP3 on AndroidHow to Convert OGG to MP3 on AndroidHow to Convert WAV to MP3 on iPhoneHow to Convert AIFF to MP3 on iPhoneHow to Convert M4A to MP3 on WindowsOpus to MP3: Complete Conversion GuideConvert Audio on Linux: Command Line and Browser OptionsHow to Convert Audio Without Installing SoftwareHow to Convert WMA to MP3 on Mac (Step-by-Step Guide)OGG to FLAC: What to Expect from the ConversionAAC to FLAC: Convert and What to ExpectOpus to WAV: How to Convert and Why You Might Need ToWAV to Opus: The Web Developer's Audio GuideBest Audio Format for Speech-to-Text TranscriptionBest Audio Format for WhatsApp Voice MessagesAudio Formats Windows Media Player Plays NativelyAudio Formats VLC Supports and Its Conversion FeaturesAudio Formats Foobar2000 SupportsAudio Formats Plex Media Server SupportsKodi Audio Format: What Works & What Needs ConversionAudio Formats for PS4 and PS5 USB PlaybackAudio Formats for Xbox USB PlaybackAudio on Nintendo Switch: Limitations and WorkaroundsHow to Play FLAC on iPhone (iOS 11 and Later)How to Play FLAC on Android NativelyWAV to FLAC: Converting Without Any Quality LossM4A to OGG: Converting Apple Audio to Open-SourceOpus Bitrate Guide: 32, 64, 96, 128, 192 kbps ExplainedReduce Audio File Size Without Losing QualityAudio Format Support on Raspberry Pi with mpd and mopidyBest Audio Format in 2025: The Definitive GuideIs yt-dlp Legal? What You Need to KnowLegal Ways to Download Music for Offline ListeningCreative Commons Music for Content Creators: Full GuideWMA to MP3: What to Expect and How to ConvertAIFF to MP3: GarageBand Exports and Quality SettingsHow to Convert Audio on Mac: GarageBand & QuickTimeHow to Convert Audio on iPhone: Files App & BrowserHow to Batch Convert Audio Files: FFmpeg & BrowserExtract Audio from MP4 Without Software (Browser Method)How to Convert iPhone Voice Memo to MP3 (Free, No App)How to Convert Zoom Recording to MP3 (M4A or MP4 Export)How to Convert Google Meet Recording to MP3How to Extract Audio from a Zoom Webinar RecordingHow to Compress Audio in Audacity: Size & DynamicsFFmpeg Compress Audio: MP3, FLAC, Opus & AAC One-LinersCompress MP3 Without Losing Quality: What's PossibleHow to Make a Ringtone From an MP3 (iPhone & Android)How to Trim an MP3 Without Losing QualityHow to Cut Audio in Audacity (2026 Step-by-Step)How to Merge Audio Files: Three Real MethodsHow to Remove Vocals From a Song (Honest 2026 Guide)How to Record Audio on Mac: 2026 GuideHow to Record Audio on Windows: 2026 GuideHow to Record Audio on iPhone: 2026 GuideHow to Edit MP3 Metadata: Tools & WorkflowsHow to Find BPM of a Song: 5 MethodsHow to Split Audio Files: 3 Methods That WorkWhat Is MP3? The Format ExplainedWhat Is FLAC? The Lossless Audio FormatWhat Is OGG? The Open Container Format ExplainedWhat Is M4A? Apple's Audio Format ExplainedWhat Is AAC? Advanced Audio Coding ExplainedWhat Is WMA? Windows Media Audio ExplainedAudio Bitrate Explained: What It Means for QualitySample Rate Explained: 44.1kHz vs 48kHz vs 96kHzMP3 vs WAV: Which Format Should You Use?MP3 vs FLAC: Lossy vs Lossless ComparedMP3 vs AAC: Which Codec Sounds Better?MP3 vs OGG (Vorbis): The Complete ComparisonFLAC vs WAV: Lossless Formats ComparedM4A vs MP3: Which Should You Choose?Lossless vs Lossy Audio: The Complete GuideAudio Formats Explained: The Complete GuideBest Audio Format for Music ProductionBest Audio Format for PodcastsBest Audio Format for GamingBest Audio Format for Music StreamingBest Audio Format for Archiving MusicWhy WAV Files Are So Large (And What to Do About It)MP3 vs WAV for Audio Editing in a DAWWhen Should You Convert MP3 to WAV?Convert WAV to MP3 for Sharing and EmailM4A vs MP3: Which Has Better Quality and Smaller Size?What Is M4A? The iPhone Audio Format ExplainedHow to Convert MP3 to OGG for Unity Game DevelopmentOGG vs MP3 for Web Audio: Which Should You Use?AAC vs OGG: Which Lossy Codec Wins?Opus vs MP3: The Modern Codec ShowdownM4A vs AAC: What's the Difference?What Is Opus? The Modern Audio Codec ExplainedMP3 vs WMA: Which Format Should You Choose?AAC vs FLAC: Lossy or Lossless — Which to Choose?OGG vs Opus: What's the Difference?Best Audio Format for Discord in 2026Best Audio Format for Video EditingAudio File Size Comparison: MP3, WAV, FLAC, OGG, AACOpus Audio for Web Developers: A Practical GuidePrivacy-First Audio Conversion: Why Browser-Based MattersAudacity vs AudioUtils: Which Should You Use?AIFF vs FLAC: Which Lossless Format Is Better?WMA vs MP3: Which Sounds Better?OGG vs AAC: Which Audio Codec Is Better?M4A vs OGG: Which Lossy Audio Codec to UseBest Audio Format for Zoom RecordingsBest Audio Format to Use in AudacityBest Audio Format for Voice RecordingWhat Is Vorbis? The Open Audio Codec ExplainedWhat Is ALAC? Apple Lossless Audio ExplainedGarageBand Audio Formats: What to Use and WhyiTunes and Apple Music Audio Formats ExplainedAudio Sample Rates: 44.1, 48, 96 kHz ExplainedWhat Is HLS Audio? HTTP Live Streaming ExplainedAIFF vs. AIF: What Is the Difference?Best Audio Format for iMovie: Import and Export GuideAdobe Premiere Pro Audio Format GuideLogic Pro Audio Guide: Best Import & Export SettingsOBS Studio Audio Format and Settings GuideTwitch Audio Requirements: Format, Bitrate & QualitySpotify Audio Format: What You Need to KnowYouTube Audio Requirements: Quality, Format & LUFSTikTok Audio Requirements: Format, Bitrate, and QualityAndroid Audio Formats: Native Support and Best PracticesiPhone Audio Formats: What iOS Supports & Doesn'tBest Audio Format for Ringtones: iPhone and AndroidBest Audio Format for Car USB: MP3, FLAC, or WAV?MP3 Bitrate Guide: 128 to 320 kbps ExplainedFLAC vs Opus: When to Use Each Audio CodecWAV vs MP3: The Honest Quality ComparisonAAC vs. MP3 for Streaming: Which Is Better?Best Audio Format for AudiobooksFFmpeg vs. AudioUtils: When to Use EachAudio Formats for Podcast Apps: Spotify, Apple, and MoreAudio Bitrate vs. Sample Rate: What's the Difference?Audio Transcoding vs. Converting: What Is the Difference?OGG vs FLAC: Which Should You Use?Opus vs AAC: Which Codec Is Better?WAV vs FLAC for Archiving: Which Is Best?M4A vs FLAC: Apple AAC vs Lossless Quality ComparedMP3 vs AAC for AirPods: Does the Codec Matter?Audio Normalization: Peak vs Loudness — When to Use EachAudio Quality Settings: Bitrate, Sample Rate, Bit DepthMP3 vs. WAV for Podcasting: Which Format to UseBest Audio Format for Discord: Opus, MP3, and File LimitsBest Audio Format for TikTok: Specs and Upload TipsBest Audio Format for Instagram Reels and StoriesAudio Sample Rate Explained: 44.1 vs 48 vs 96kHzFLAC vs. ALAC: Lossless Audio Format ComparisonWhat Is VBR vs CBR? Bit Allocation in Audio EncodingAudio File Too Large? How to Reduce Audio File SizeAudio Formats for Zoom: Recordings, Uploads, and SharingContainer vs Codec: The Most Confusing Thing in AudioPCM Audio Explained: Why WAV Files Are So LargeVBR vs CBR for MP3: When Each Mode Is the Right ChoiceMP3 128 kbps vs 320 kbps: Does the Difference Matter?FLAC vs WAV for Music Production: The Practical AnswerM4A vs MP3 for iPhone: Which Format to Use and WhenOGG Vorbis vs MP3: Quality, Compatibility & When OGG WinsBest Audio Format for YouTube Uploads in 2026Best Audio Format for Audacity: Import, Edit, and ExportBest Audio Format for Premiere Pro: Timelines & ExportAudio Bitrate Guide: Right Settings for Every Use CaseWhy Is My Audio File So Large? How to Reduce ItLossless Audio: Is It Worth It? The Honest AnswerMP3 File Corrupted: How to Diagnose and Fix ItAudio Format for Spotify: Upload Specs & What HappensBest Free Audio Converter: Browser-Based vs DesktopAudio Compression Explained: File Size vs Dynamic RangeID3 Tags Explained: MP3 Metadata Standard