FLAC to MP3: How to Convert on Mac Without Killing the Quality

By Hieu Dinh

FLAC to MP3: How to Convert on Mac Without Killing the Quality

You ripped your CD collection to FLAC, or downloaded a high-res album from Bandcamp, and now you have a folder full of beautiful, lossless audio files. The problem? Your phone won't play them, your car stereo doesn't recognize them, and they're eating up gigabytes you don't have. So you start looking for a clean way to convert FLAC to MP3 — something that shrinks the files and makes them play everywhere without turning your carefully ripped music into mush.

Here's the honest truth most converter websites won't tell you: converting FLAC to MP3 is inherently lossy. You are throwing away audio data, and you can never get the original FLAC quality back. But — and this is the part that matters — at a high enough bitrate, the difference is genuinely inaudible to the vast majority of listeners on the vast majority of gear. This guide shows you exactly how to convert FLAC to MP3 on a Mac, what bitrate to choose so nobody can hear the difference, and the fastest way to convert an entire library at once.

Why Convert FLAC to MP3?

FLAC (Free Lossless Audio Codec) is the gold standard for archiving music. It compresses audio without discarding a single bit, so a FLAC file is a perfect, mathematically identical copy of the original recording. That's exactly why audiophiles and collectors love it — and exactly why it's a pain in day-to-day life.

There are two big reasons to convert FLAC to MP3:

  • Compatibility. MP3 is the most universally supported audio format on the planet. Every phone, every car stereo, every old iPod, every cheap Bluetooth speaker, every web browser, every game console plays MP3 without a second thought. FLAC support is far spottier — plenty of car head units, fitness watches, smart speakers, and older devices simply won't touch it.
  • File size. This is the big one. FLAC files are typically 2 to 5 times larger than a high-quality MP3 of the same track. A FLAC album can easily run 250–400 MB; the MP3 version might be 80–120 MB. Multiply that across a library of a thousand albums and you're talking about hundreds of gigabytes. If you're loading music onto a phone with limited storage or a tiny SD card, MP3 is the practical choice.

The rule of thumb most people land on: keep your FLAC files at home as the archival master, and convert FLAC to MP3 for everything portable — phones, cars, and anything with limited space.

FLAC vs MP3: A Quick Comparison

Before you convert, it helps to understand what's actually different between the two formats. The short version: FLAC keeps everything, MP3 throws some of it away to save space. Whether that loss matters depends entirely on the bitrate you choose and how you listen.

FeatureFLACMP3
Compression typeLosslessLossy
Audio data100% preservedSome discarded
Typical file size (per album)250–400 MB80–120 MB
Sound qualityIdentical to sourceExcellent at 320 kbps / V0
Device compatibilityLimitedUniversal
Best use caseArchiving, audiophile listeningPortable, streaming, sharing
Reversible?Yes (it's lossless)No (data is gone for good)
Metadata / album artYesYes

If you want a deeper dive into how lossy and lossless codecs actually work, see our explainers on the difference between lossy and lossless audio and what is lossless compression. For now, the practical takeaway is this: because the conversion can't be undone, never delete your original FLAC files until you're certain the MP3s sound right to you.

What Bitrate Should You Use?

This is the single most important decision when you convert FLAC to MP3, so let's settle it before touching any tools.

  • 320 kbps CBR (constant bitrate) is the highest-quality MP3 you can make. Every second of audio gets a fixed 320 kilobits. The file is slightly larger, but it's the safest choice for "I never want to think about quality again." For most people, 320 kbps MP3 is transparent — meaning indistinguishable from the FLAC source in a blind listening test.
  • V0 VBR (variable bitrate) is the audiophile favorite. Instead of a fixed rate, the encoder spends more bits on complex passages and fewer on simple ones, averaging around 245 kbps. The result is nearly identical in quality to 320 CBR but with smaller files. This is what most people should use.

Anything below 192 kbps starts to become audibly worse on good headphones, especially with cymbals, reverb tails, and busy mixes. Don't go lower than 192 unless you truly need the space. For the best balance of quality and size, use V0 VBR or 320 kbps CBR — both are covered in the commands below.

Method 1: FFmpeg (Best for Quality and Batch Conversion)

FFmpeg is a free, open-source command-line tool and it's the most reliable way to convert FLAC to MP3 on a Mac. It uses the excellent LAME MP3 encoder under the hood, gives you exact control over the bitrate, and can rip through an entire library in a single command. Install it with Homebrew:

brew install ffmpeg

Convert a single file at 320 kbps CBR:

ffmpeg -i input.flac -codec:a libmp3lame -b:a 320k output.mp3

Breaking that down:

  • -i input.flac — your source FLAC file
  • -codec:a libmp3lame — use the high-quality LAME MP3 encoder
  • -b:a 320k — set a constant bitrate of 320 kbps
  • output.mp3 — the file to create

Convert with V0 VBR instead (smaller files, same quality):

ffmpeg -i input.flac -codec:a libmp3lame -q:a 0 output.mp3

Here -q:a 0 selects the highest VBR quality setting (this is LAME's V0). Use -q:a 2 for V2 (around 190 kbps) if you want even smaller files.

Batch-convert an entire folder of FLAC files. This is where FFmpeg shines. Open Terminal, cd into your folder of FLAC files, and run:

for f in *.flac; do ffmpeg -i "$f" -codec:a libmp3lame -q:a 0 "${f%.flac}.mp3"; done

That loops over every .flac file in the folder and creates a matching .mp3 next to it, preserving the original filename. FFmpeg automatically carries over tags like artist, album, and track title. A typical album converts in a few seconds, and a whole library of hundreds of tracks finishes in minutes — all locally, with nothing uploaded anywhere.

Method 2: Audacity (Free GUI, Good for Editing Too)

If the command line isn't your thing, Audacity is a free, open-source audio editor that runs natively on macOS and exports MP3 out of the box (modern versions bundle the LAME encoder, so there's no extra setup).

  1. Open Audacity and go to File → Import → Audio, then select your FLAC file.
  2. The waveform loads in the editor. You can trim, normalize, or edit it here if you want — handy if you also need to clean up the audio.
  3. Go to File → Export Audio.
  4. Set Format to MP3 Files.
  5. Choose your quality: pick Constant at 320 kbps, or Variable and the highest quality preset for V0.
  6. Click Export, fill in the metadata fields if you want, and save.

Audacity is the right pick when you only have a handful of files and would rather click than type, or when you want to do some light editing during the conversion. For converting hundreds of files at once, though, FFmpeg's batch loop is far faster.

Method 3: VLC Media Player

VLC isn't just a media player — it's also a capable converter, and it's probably already on your Mac. It's not the fastest option, but it requires zero command-line knowledge.

  1. Open VLC and go to File → Convert / Stream.
  2. Drag your FLAC file (or several) into the window.
  3. Under Choose Profile, select Audio - MP3. Click the edit (wrench) icon if you want to bump the bitrate up to 320 kbps.
  4. Click Save as File, choose a destination, and hit Save.

VLC handles batches by letting you add multiple files, but its conversion is slower than FFmpeg and offers less fine-grained control over the encoder. Use it for a quick one-off when you don't want to install anything new.

Method 4: The Mac Music App and Online Converters

A quick word on two options people often reach for first.

The macOS Music app. Here's a nuance that trips a lot of people up: the Mac Music app doesn't import FLAC natively at all. Apple's ecosystem uses ALAC (Apple Lossless) as its lossless format, not FLAC, so dragging a FLAC file into Music usually does nothing. You'd have to convert FLAC to ALAC or MP3 first using one of the methods above — which means Music isn't actually a FLAC-to-MP3 converter on its own. Once a file is in a format Music recognizes, you can use File → Convert → Create MP3 Version, but you can't start from FLAC directly.

Online converters. Sites like CloudConvert, Convertio, and FreeConvert will convert FLAC to MP3 in your browser. They're fine for a single small file, but they come with real downsides for a music library: free tiers cap file sizes and the number of conversions, large lossless files take a while to upload and download, and — most importantly — you're uploading your audio to a third party's servers. For anything you care about, converting locally with FFmpeg, Audacity, or VLC is faster, free, and private.

Shrinking the Rest of Your Files With Compresto

Converting FLAC to MP3 solves your audio storage problem. But if you're the kind of person who rips lossless albums and curates a library, you've probably also got a Mac full of other oversized files — screen recordings, 4K phone videos, huge PNG exports, and bloated PDFs that all need taming.

That's where Compresto comes in. Compresto is a native macOS app that compresses videos, images, PDFs, and GIFs using hardware-accelerated encoding on Apple Silicon. It typically shrinks files by 60–90% without any visible quality loss, processes whole batches at once, and — like the audio methods above — runs entirely on your Mac, so nothing ever leaves your machine.

To be clear: Compresto doesn't convert FLAC to MP3 (use FFmpeg or Audacity for that). What it does do is handle everything else on your file-shrinking to-do list. If you're already cleaning up your audio library to reclaim space, Compresto is the obvious next step for the videos, images, and documents hogging the rest of your drive.

Download Compresto free for macOS.

Frequently Asked Questions

Does converting FLAC to MP3 lose quality?

Yes — converting FLAC to MP3 is always lossy, because MP3 discards some audio data to shrink the file, and that data can't be recovered. However, at 320 kbps or V0 VBR, the loss is inaudible to the vast majority of listeners. The practical advice: convert at a high bitrate and keep your original FLAC files as the archival master.

What bitrate should I use for FLAC to MP3?

Use 320 kbps CBR for the highest-quality MP3, or V0 VBR (averaging ~245 kbps) for nearly identical quality at a smaller file size. Both are considered transparent for most people. Avoid going below 192 kbps unless you genuinely need to save space, as quality loss becomes noticeable on good headphones.

Can the Mac Music app convert FLAC?

Not directly. The macOS Music app doesn't import FLAC at all — Apple uses ALAC (Apple Lossless) instead. You'd need to convert your FLAC files to MP3 or ALAC first using FFmpeg, Audacity, or VLC. Once a file is in a supported format, Music can create an MP3 version via File → Convert → Create MP3 Version.

Is FLAC better than MP3?

For pure quality, yes — FLAC is lossless and preserves 100% of the original audio, while MP3 throws some away. But "better" depends on the use case. FLAC is better for archiving and audiophile listening; MP3 is better for portability, compatibility, and saving space. Most people keep FLAC at home and use MP3 on the go.

What's the best free FLAC to MP3 converter for Mac?

For quality and batch conversion, FFmpeg (installed via Homebrew) is the best free option — it uses the LAME encoder and can convert an entire library with one command. If you prefer a graphical interface, Audacity is an excellent free alternative that also lets you edit audio. Both run natively on macOS and cost nothing.

Will I keep my album art and metadata after converting?

Mostly, yes. FFmpeg and Audacity both carry over tags like artist, album, track number, and title automatically, and FFmpeg preserves embedded album art in most cases. Always spot-check a converted file in your music player to confirm the metadata transferred before deleting any originals.

Conclusion

Converting FLAC to MP3 is a trade-off, and the trick is making that trade-off invisible. Yes, you're discarding audio data — but at 320 kbps or V0 VBR, virtually no one can hear the difference, and you get files that are a fraction of the size and play on every device you own. For a single track or a quick edit, Audacity and VLC are friendly and free. For converting an entire library, nothing beats a one-line FFmpeg batch command.

Just remember the golden rule: keep your original FLAC files as the master copy until you're sure the MP3s sound right. And once your audio is sorted, Compresto is the fastest way to shrink the videos, images, PDFs, and GIFs cluttering the rest of your Mac — all locally, all without uploading a thing.

Want to compress audio without changing formats? See our guides on how to compress audio files and how to compress WAV files, or check out our walkthroughs for converting WAV to MP3 and M4A to MP3.

Download Compresto for macOS and handle the rest of your file-shrinking in one place.

Ready to compress your files? Join thousands of creators using Compresto ⚡