AudioUtils

AIFF to MP3: GarageBand Exports and Quality Settings

Convert AIFF from GarageBand or Logic Pro to MP3 for sharing. Learn the right bitrate, quality expectations, and how to convert free in your browser.

If you have ever exported a track from GarageBand, bounced a mix in Logic Pro, or pulled audio off an older Mac project, you have probably ended up with a .aiff file that is too large to email, too large to upload, and unplayable on most non-Apple software. This guide walks through what AIFF actually is, why it produces files of that size, how to convert it to MP3 cleanly, and the bitrate that is right for whatever you intend to do with the result.

The fastest path is the AIFF to MP3 converter — it runs entirely in the browser, no upload, no install. Below is the context that makes the right settings choice obvious.

What AIFF Is and Why You Have It

AIFF stands for Audio Interchange File Format. Apple introduced it in 1988, based on Electronic Arts' IFF chunk format from the Amiga, and it has been the native uncompressed audio container on the Mac ever since. Inside an AIFF file is plain Linear PCM — the same raw digital audio that lives inside a WAV file. The two formats are functionally interchangeable; only the container header and byte order differ. See what is AIFF and what is WAV for the full background.

You typically end up with AIFF for one of these reasons:

  • GarageBand or Logic Pro export. Apple's DAWs default to AIFF when bouncing a mix.
  • iTunes or Music CD rip with the AIFF Encoder selected. Older Music app installs and the legacy iTunes still offer this.
  • Final Cut Pro audio export. Older Final Cut versions wrote AIFF; newer ones default to WAV but AIFF remains an option.
  • Field recordings on certain pro recorders (Sound Devices, Tascam DR-series in AIFF mode).
  • Stock loops and sample libraries distributed for Apple Loops or older Akai/E-mu samplers.

In every case the file is uncompressed PCM. That is what makes it big.

Why AIFF Files Are So Large

AIFF stores every sample literally. The math is unforgiving:

bytes per second = sample rate × (bit depth ÷ 8) × channels

A standard 16-bit, 44.1 kHz stereo AIFF runs 176,400 bytes per second — about 10.6 MB per minute. A three-minute song is roughly 32 MB. A 24-bit 48 kHz stereo bounce — Logic's typical default — is closer to 17 MB per minute. A 24-bit 96 kHz mix file weighs in at 35 MB per minute, so a five-minute high-resolution bounce easily exceeds 175 MB.

That is fine for an archive copy on a hard drive. It is not fine for emailing to a collaborator, uploading to SoundCloud, or sending through iMessage. MP3 typically reduces those files to 8–12% of the original size.

Why MP3 (and Why Not Always)

MP3 is the only audio format with truly universal compatibility. iPhone, Android, every car stereo, every podcast platform, every distributor, every browser. If you are sharing audio with someone whose playback environment you cannot predict, MP3 is the safe choice.

A few situations where MP3 is not the right target:

  • Apple-only sharing where size still matters: AIFF to M4A (AAC inside MP4) is more efficient than MP3 at the same bitrate and supported natively by every Apple device. See M4A vs MP3.
  • Editing in another DAW: convert AIFF to WAV instead — AIFF to WAV is lossless and faster than MP3 export.
  • Lossless distribution to audiophiles: convert AIFF to FLAC for half the file size with bit-identical audio.

For everything else — sharing, uploading, posting, distributing, listening on the move — MP3 is correct.

Converting AIFF to MP3 in the Browser

The AIFF to MP3 converter uses WebAssembly FFmpeg in a browser tab. The audio never leaves your machine — useful for unreleased material you do not want exposed to a server.

1. Open /aiff-to-mp3. 2. Drag your AIFF file into the drop zone or click to browse. Files up to about 500 MB convert without issue; larger files depend on browser memory. 3. Choose a bitrate (see the next section). 4. Click Convert. A four-minute song typically processes in 5–15 seconds on a modern laptop. 5. Download the MP3.

Multiple files can be queued in the same browser tab. The original AIFF is never modified.

Choosing the Right MP3 Bitrate

AIFF is lossless, so the MP3 encode is the only place quality is lost. The bitrate you choose should match how the file will be used and listened to:

  • 128 kbps — Voice content, podcast rough cuts, demos sent for feedback. Music sounds visibly thinned at this bitrate, particularly cymbals, hi-hats, breathy vocals and acoustic guitar. Use only when file size is the dominant concern.
  • 192 kbps — The transparency threshold for most listeners on most equipment. Good default for music shared casually with friends or posted on social platforms that re-encode anyway. A four-minute track at 192 kbps is roughly 5.7 MB.
  • 256 kbps — Recommended for music you care about. Indistinguishable from the AIFF source for the overwhelming majority of listeners in blind tests. The sweet spot for personal music libraries and for sharing with other producers.
  • 320 kbps — Maximum MP3 bitrate. Use when the recipient may re-encode the file again (you avoid compounding loss), when the music has a lot of high-frequency content (cymbals, strings, complex orchestral arrangements), or when you simply want zero compromise within the MP3 format.

Pick VBR V0 or V2 if the converter offers it. VBR allocates bits dynamically — more for complex passages, fewer for simple ones — and produces a smaller file at the same perceived quality compared with CBR. V0 averages roughly 245 kbps and V2 averages roughly 190 kbps. Read more in VBR vs CBR for MP3.

There is no benefit to encoding above 320 kbps because the MP3 specification caps there.

GarageBand-Specific Workflow

If you are exporting from GarageBand and your final destination is MP3, you can skip AIFF entirely:

  • macOS GarageBand: Share → Export Song to Disk → choose MP3 → pick a quality. "Higher Quality" is roughly 192 kbps; "Highest Quality" is 256 kbps CBR.
  • iOS / iPadOS GarageBand: Share → Song → choose Audio File → Compressed (Medium or High Quality) writes M4A; Compressed (Low Quality) writes a low-bitrate AAC. iOS GarageBand does not export MP3 directly — bounce to AIFF and use /aiff-to-mp3 on the AIFF.

Why bounce to AIFF first if you want MP3 anyway? Two reasons. One, you keep a lossless master for future re-mastering, format changes or distribution. Two, GarageBand's built-in MP3 encoder is fine but offers limited control over encoding mode and bitrate. Bouncing to AIFF and converting separately gives you full control of the MP3 settings.

Logic Pro Workflow

Logic offers more granular MP3 export through Bounce → File:

  • Stereo File / Surround File — your master bounce. Set to AIFF, 24-bit, project sample rate. Save this as the archive copy.
  • MP3 — enable the additional MP3 output. Logic uses the LAME encoder. Pick CBR 256 kbps for delivery to clients or 320 kbps for distribution masters.

Logic's MP3 encoding step is identical in quality to converting the AIFF afterwards with ffmpeg or our browser tool. The reason to do it separately is workflow flexibility — re-encoding from a saved AIFF lets you produce a 128 kbps preview, a 192 kbps social media cut, and a 320 kbps distribution copy without re-bouncing the mix from Logic.

Command Line: ffmpeg for AIFF to MP3

Useful for batch jobs and automation. Install ffmpeg ('brew install ffmpeg' on Mac) and:

Single file at VBR V2 (~190 kbps):

'ffmpeg -i input.aiff -q:a 2 output.mp3'

Single file at 320 kbps CBR:

'ffmpeg -i input.aiff -b:a 320k output.mp3'

Convert every AIFF in a folder, preserving metadata:

'for f in *.aiff; do ffmpeg -i "$f" -q:a 2 -map_metadata 0 "${f%.aiff}.mp3"; done'

The '-map_metadata 0' flag carries title, artist, album, year and other tags from the AIFF into ID3v2 tags on the MP3. Without it the MP3 will be untagged.

For more on bulk workflows, see how to batch convert audio.

AIFF vs WAV: A Quick Reality Check

AIFF and WAV both store Linear PCM. The audio data inside each is identical at the same sample rate and bit depth. The differences are purely structural: WAV uses RIFF chunks and little-endian byte order; AIFF uses IFF chunks and big-endian byte order. Original WAV had weak metadata support and AIFF had richer tag chunks, but modern tools normalize this — both formats round-trip through any DAW or converter without quality change.

If you are converting AIFF to MP3 for sharing, the format does not matter. If you are converting AIFF to WAV for use in a non-Apple DAW, that conversion is also lossless and instantaneous because no audio data is being changed.

See WAV vs AIFF for the long version.

Keep Your AIFF Master

Once you have an MP3, the AIFF should not be deleted. The MP3 is a one-way derivative — you cannot get the AIFF quality back from the MP3. Anything that requires re-mastering, alternate edits, format changes, or further processing has to come from the AIFF source. Treat the AIFF (or a FLAC compression of it) as your archive copy. The MP3 is your sharing copy.

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 LossAIFF to WAV: macOS to Windows Audio WorkflowM4A 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 ConvertHow 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 WAV? Everything You Need to KnowWhat 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?WAV vs AIFF: Which Uncompressed Format?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 ComparisonAudio 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