Skip to content
Zumkor
← Back to blog · · 9 min read

How to convert WAV to MP3 on Mac (batch, offline, 2026)

WAV files too big to send? Convert WAV to MP3 on your Mac with the Music app, ffmpeg, or Zumkor — batch whole folders offline, nothing uploaded.

guides audio mac

Zumkor converts audio and pulls soundtracks out of video — MP3, M4A, FLAC, and more on your Mac — free for 7 days, batch whole folders, 100% offline. Then one-time $19.99, yours forever. Needs macOS 14+ on an Apple silicon Mac — any M-series machine.

Download on the App Store Zumkor for Mac

A WAV file is never a problem until it has to go somewhere. The recording plays fine on your Mac — then you try to email the interview and it’s 480 MB. The voice-memo export won’t fit in the client’s portal. The band’s practice session fills a quarter of your Dropbox. The sample pack you bought is 6 GB of files your phone refuses to sync. WAV is wonderful right up until the moment it needs to travel, and then its defining feature — completely uncompressed audio — becomes the whole problem.

The exit is WAV to MP3: the same audio at roughly a tenth of the size, playable on every device made this century. This guide covers how to convert WAV to MP3 on a Mac, entirely on-device — the built-in Music-app route (which genuinely works for WAV, with caveats worth knowing), the free command-line route, and the drag-a-folder batch route — plus the one decision to make before converting anything.

Why WAV files are enormous

WAV is uncompressed PCM audio — the raw samples, nothing squeezed. At CD quality (16-bit, 44.1 kHz stereo) that’s about 10 MB per minute; studio-grade 24-bit/96 kHz recordings run three times that. A one-hour interview lands around 600 MB. Nothing is wrong with the file — that’s just what audio weighs before compression.

That weight buys two things: zero quality loss, and universal editability — every DAW, video editor, and audio tool opens WAV without decoding drama, which is why recorders and export dialogs default to it. It’s the right format for making audio. It’s the wrong format for distributing it.

MP3 is the distribution answer: at 256–320 kbps it’s audibly transparent to nearly everyone, roughly a tenth of the WAV’s size, and compatible with everything from a twenty-year-old iPod to a car stereo’s USB port.

One decision before you convert, though: is this WAV a master? If it’s an original recording — a session, an interview you’ll edit, a mix bounce — keep the WAV archived and treat MP3 as the copy that travels. The MP3 encode discards data permanently; converting an MP3 back to WAV later just makes a huge file of the same lossy audio. If the WAV is disposable (a one-off export, a file someone sent you), convert and move on. And if the files are headed into your own Apple Music library rather than out into the world, consider ALAC instead — lossless, Apple-native, and about half the WAV’s size; the same fork explained in the FLAC guide applies here.

The built-in route: the Music app (works, with catches)

Unlike FLAC — which Apple Music refuses at the door — WAV imports into the Music app natively, which means the Mac’s hidden built-in MP3 converter can actually see it:

  1. Open Music → Settings → Files → Import Settings.
  2. Set Import Using to MP3 Encoder, quality Higher Quality (192 kbps) — or Custom for up to 320 kbps. Click OK.
  3. Drag your WAV files into the Music library.
  4. Select the imported tracks, then choose File → Convert → Create MP3 Version.
  5. MP3 copies appear in the library next to the WAV versions. To get at the actual files, right-click a track → Show in Finder.

Completely free, already installed, and for two or three tracks it’s fine. The catches are why people converting more than that go around it: your files must pass through the Music library (now both copies live there, and the WAVs inflate its size until you delete them); the MP3s land wherever Music keeps its media, not in a folder you chose; and the import setting quietly stays on MP3 for everything you rip or import afterward until you remember to flip it back. It’s a converter built for a music library, pressed into service as a file utility.

Worth knowing what doesn’t work: macOS also ships a command-line audio converter, afconvert, but its encoders don’t include MP3 — it writes AAC and Apple Lossless, not MP3. And QuickTime’s export menu has no MP3 option either. For actual MP3 encoding outside the Music app, you need one outside tool.

Skip the upload-a-file converter sites

The web-converter objection is sharper for WAV than for any other format, because the files are huge: uploading 480 MB to a free converter site — most of which cap uploads far below that — then waiting to download the result is the slowest possible version of a job your Mac finishes in seconds, locally. Both routes below are fully offline. Wi-Fi off, nothing leaves the machine — which is exactly how unreleased recordings and client audio should be handled.

Method 1: ffmpeg (free, command line)

The free tool is ffmpeg, installed via Homebrew:

brew install ffmpeg

One file, maximum MP3 quality:

ffmpeg -i input.wav -c:a libmp3lame -b:a 320k output.mp3

-c:a libmp3lame selects the LAME encoder — the best MP3 encoder there is — and -b:a 320k sets MP3’s maximum bitrate. For smaller files that are still audibly transparent, use -q:a 0 in place of the bitrate flag for high-quality variable bitrate around 245 kbps. Voice recordings can go far lower — -b:a 128k is generous for speech.

A whole folder:

cd ~/Music/wav-exports
for f in *.wav; do
  [ -e "$f" ] || continue
  ffmpeg -i "$f" -c:a libmp3lame -b:a 320k "${f%.*}.mp3"
done

Audio encodes fast — even a large folder churns through in minutes. If you live in Terminal, ffmpeg is the complete free answer. If what you want is automation rather than a terminal, Zumkor’s “Convert Files” action in Apple’s Shortcuts app runs the same conversion headless — a folder-watch shortcut can turn every WAV that lands in a recordings folder into an MP3 automatically, no loop to maintain.

Method 2: Zumkor (drag the folder, done)

If your WAV situation is a folder — session exports, a field-recorder card, years of voice memos, a sample library — rather than a file, this is the chore Zumkor exists to delete (it needs macOS 14 or later on an Apple silicon Mac — any M-series machine):

  1. Open Zumkor and drag in the .wav files, or the whole folder — subfolders included if you tick “Look inside subfolders”.
  2. Pick MP3 as the output. (M4A/AAC, ALAC, FLAC, AIFF, and Opus are there too, if the destination wants something else.)
  3. Click Convert and choose where the output lands. There’s no bitrate menu to puzzle over — Zumkor picks a high-quality bitrate automatically, around 256 kbps for MP3.

The parts that matter at folder scale: the queue takes up to 2,000 files, folder structure can be mirrored in the output so Sessions/2025/take3.wav comes out as Sessions/2025/take3.mp3, and the converted files land in a folder you choose — not buried inside a music library, not scattered next to the originals. Everything runs on-device: no uploads, no file-size caps, works with Wi-Fi off, and conversions keep running with the window closed.

Zumkor is free for 7 days, full-featured; after that it’s a one-time $19.99 purchase — buy once, keep it forever, no subscription. The honest trade-off: for three tracks, the Music app is free and already installed, and ffmpeg is free forever if Terminal doesn’t put you off. Zumkor earns its slot at folder scale, when output should land where you choose, and when the same Mac also accumulates FLAC albums, M4A voice memos, and videos that need their audio pulled out — one app converts all of it.

Getting the conversion right

  • 256–320 kbps for music, less for voice. At 320 kbps (or V0 VBR) the difference from the WAV is inaudible in blind tests for nearly everyone. Speech is far more forgiving — a 128 kbps MP3 of an interview sounds identical to the WAV at an eighth of the size of a 320 kbps music encode.
  • Keep masters, ship copies. If the WAV is an original recording, archive it (external drive, cloud backup) and hand out the MP3. Storage is cheaper than re-recording anything.
  • Never round-trip. WAV→MP3→edit→MP3 stacks lossy encoding on lossy encoding, and artifacts compound. Edit the WAV, encode once, done. If a collaborator needs editable audio, send the WAV (or a lossless FLAC/ALAC) — not an MP3 with a .wav extension of hope.
  • Hi-res sources downsample gracefully. A 24-bit/96 kHz WAV converts to MP3 fine — the format tops out at 48 kHz/16-bit territory, and for a travel copy that’s the point. The hi-res data lives on in your archived original.
  • If it’s going into Apple Music, MP3 isn’t the only exit. M4A (AAC) sounds better than MP3 at the same bitrate and ALAC keeps it lossless — Zumkor and ffmpeg both write either. MP3’s advantage is purely universality: it’s the format that plays everywhere else.

When the WAV is really a video problem

A common variant: the audio you want isn’t a standalone WAV at all — it’s the soundtrack of a screen recording, a filmed talk, a rehearsal video, and step one of someone’s advice was “export it to WAV first.” Skip that step. Zumkor extracts the audio track straight out of MP4/MOV/MKV to MP3 (or, where the source allows it, as a stream copy with zero quality loss) — one pass, no intermediate WAV the size of the video. That job has its own guide.

The reverse direction exists too: some samplers, soundboards, and editing workflows demand WAV input, and Zumkor writes WAV alongside MP3 — so an MP3 that needs to become a WAV for a piece of gear is the same drag in the other direction. Just remember it doesn’t restore quality; it repackages the same lossy audio in an uncompressed container.

Bottom line

  • Two or three tracks, no installs: Music app — Import Settings → MP3 Encoder, import the WAVs, File → Convert → Create MP3 Version. Free, clunky, works.
  • Comfortable in Terminal: brew install ffmpeg, then ffmpeg -i input.wav -c:a libmp3lame -b:a 320k output.mp3 — loop it for folders.
  • A folder or a library, structure intact: Zumkor — drag the folder, pick MP3, output lands where you choose, up to 2,000 files offline in one pass, one-time $19.99.
  • Before any of it: decide whether the WAV is a master to archive or a file to dispose of — and whether the destination actually wants MP3, or would be better served lossless by ALAC.

However you do it, the conversion belongs on your Mac. Uploading half a gigabyte of your own recordings to a converter site to shrink them is the one genuinely bad option on the list.

FAQ

Can the Music app convert WAV to MP3 on a Mac?

Yes. Set the encoder under Music → Settings → Files → Import Settings to MP3, then select the imported WAV tracks and choose File → Convert → Create MP3 Version. The catches: files must be imported into your Music library first, the MP3 copies land inside the library rather than a folder you choose, and the import setting silently applies to future CD rips until you change it back.

Does converting WAV to MP3 lose quality?

Yes — MP3 is a lossy format, so some audio data is discarded permanently. At 256–320 kbps the difference is inaudible to nearly everyone on nearly any equipment. Keep the WAV originals if they’re masters you might edit again; converting the MP3 back to WAV later restores nothing.

How do I batch convert a folder of WAV files to MP3 on a Mac?

Either loop ffmpeg in Terminal — ffmpeg -i in.wav -c:a libmp3lame -b:a 320k out.mp3 inside a for-loop — or drag the whole folder into Zumkor, pick MP3, and click Convert. Zumkor processes up to 2,000 files per queue on-device, can mirror your folder structure in the output, and works fully offline.