Skip to content
AAC to MP3

Audio conversion

How to batch convert AAC files to MP3

· 5 min read

Open aac2mp3.com, drag up to 20 AAC files onto the drop zone (or click Choose AAC files and multi-select), pick a bitrate, and wait for the queue to finish. A Download all MP3s button appears when multiple files are done. The conversion runs entirely in your browser — no files are uploaded, there is no signup, and you can repeat with another batch immediately.

How to batch convert AAC files to MP3

Five steps in any browser — no install, no signup, no upload. Conversion runs on your own device.

  1. Open the converter

    Go to aac2mp3.com in any browser. The converter loads as a web page — there is nothing to install and no account to create.

  2. Drop or select multiple AAC files

    Drag up to 20 .aac, .m4a, .m4b or .m4r files onto the drop zone at once, or click Choose AAC files and select multiple files in the file picker. Each file can be up to 100 MB.

  3. Pick a bitrate

    Choose an MP3 bitrate — 192 kbps is the default and works well for most music. For speech recordings, 128 kbps is enough. For audiophile-grade output, pick 320 kbps.

  4. Wait for the queue to finish

    Files convert one by one, each with its own progress bar. Conversion runs on your device using your browser's built-in AAC decoder and a JavaScript MP3 encoder — nothing is uploaded to a server.

  5. Download all MP3s

    When two or more files are done, a Download all MP3s button appears. Click it to save every converted file at once. You can also download individual files as they finish.

Why batch conversion matters

If you have a handful of AAC files from Voice Memos or a podcast app, converting them one by one is fine. But when you are dealing with an iTunes library, a folder of audiobook chapters, or a batch export from a DAW, doing files individually is tedious. Batch mode lets you drop the whole set, walk away, and come back to a folder of finished MP3s.

Most online converters cap free batches at 2–5 files, throttle speed, or force you to upload every file to their server. Because the AAC to MP3 converter runs client-side in a Web Worker, there is no upload step, no server queue, and no artificial throttle. The limiting factor is your device's CPU — and on any machine from the last five years, a 4-minute song encodes in about 2–3 seconds.

Converting an iTunes or Apple Music library

Songs purchased from the iTunes Store are DRM-free 256 kbps AAC files with an .m4a extension. If you want MP3 copies — for a car stereo, an older MP3 player, or a DJ controller that only reads MP3 — batch conversion is the fastest path.

  1. On macOS, find your music in Music > Settings > Files > Media Folder Location (usually ~/Music/Music/Media). On Windows, check iTunes > Edit > Preferences > Advanced > iTunes Media folder.
  2. Open the converter in your browser and drag up to 20 .m4a files onto the drop zone.
  3. Set the bitrate to 256 kbps to match the source quality. Going higher than 256 adds file size without adding detail, because the source is already lossy at 256. The quality guide explains why.
  4. Click Download all MP3s when the batch finishes, then drag the next 20 files in.

Apple Music streaming tracks are DRM-protected and cannot be converted by any tool. If a file fails to decode, it is most likely a streaming cache rather than a purchased track.

Privacy: nothing leaves your device

When you batch-convert 20 files on a server-based converter, you are uploading up to 2 GB of audio to someone else's infrastructure. That might include unreleased music, client recordings, legal depositions, or private voice notes.

The browser-based converter never sees a network request for your audio. The browser's built-in AAC decoder reads the file from disk, a JavaScript LAME encoder produces the MP3, and the result is saved back to your downloads folder. You can verify this by opening DevTools (F12) and watching the Network tab — zero audio bytes leave your machine.

Which bitrate for a batch?

In batch mode every file gets the same bitrate, so pick the setting that fits the majority of your files:

Content typeRecommended bitrateWhy
Voice memos, lectures128 kbpsSpeech is narrow-band; 128 is transparent and keeps files small
Podcasts, audiobooks128–192 kbpsMostly speech with some music; 192 gives headroom
iTunes purchases (256 kbps AAC)256 kbpsMatches the source; no audible loss
Studio recordings, high-quality masters320 kbpsMaximum fidelity for critical listening

If a batch contains mixed content and you are unsure, 192 kbps is a safe middle ground — transparent for speech, good enough for casual music listening, and about 1.5 MB per minute.

More than 20 files? Use ffmpeg

The browser converter handles batches of up to 20 files, which covers most one-off conversions. For a full music library with hundreds or thousands of tracks, a command-line tool is faster. ffmpeg is free, open-source, and available on macOS, Windows, and Linux:

# Convert every .m4a in the current folder to 256 kbps MP3
for f in *.m4a; do
  ffmpeg -i "$f" -codec:a libmp3lame -b:a 256k "${f%.m4a}.mp3"
done

On Windows (PowerShell):

Get-ChildItem *.m4a | ForEach-Object {
  ffmpeg -i $_.FullName -codec:a libmp3lame -b:a 256k ($_.BaseName + ".mp3")
}

For smaller batches or when you do not want to install anything, the browser converter is simpler — drag, convert, download, repeat.

Batch conversion on iPhone and Android

The converter works on mobile browsers too. On iPhone and iPad, tap Choose AAC files and multi-select from the Files app. On Android, Chrome lets you select multiple files in the system file picker.

Mobile conversion is slower than desktop — an iPhone 15 takes roughly 4–5 seconds per song versus 2–3 seconds on a laptop — but it works without any app install and the audio never leaves your phone. For batches under 10 files it is perfectly practical.

Ready to convert?

Open the free AAC to MP3 converter, drop your files, and download the MP3s. Up to 20 files per batch, no signup, no upload. For single-file conversions or M4A specifically, the M4A to MP3 converter works the same way.

Batch AAC to MP3 — frequently asked questions

How many AAC files can I convert at once?

Up to 20 files per batch. Each file can be up to 100 MB. There is no daily limit — close the batch, drop another 20 files, and repeat as many times as you need.

Is there a total file-size limit?

No. Because conversion runs in your browser instead of on a server, there is no upload quota and no aggregate size cap. The only limit is 100 MB per individual file, which covers virtually any single song or podcast episode.

Do all files convert at the same time?

Files are processed one at a time in a queue. This keeps memory usage low and lets you see progress for each file individually. On a modern laptop, a typical 4-minute song takes about 2–3 seconds to encode.

Can I change the bitrate mid-batch?

Yes. If you change the bitrate or sample rate after some files have already finished, a Re-convert button appears so you can re-encode them with the new settings.

Are my files uploaded to a server?

No. The entire conversion — decoding AAC and encoding MP3 — happens inside your browser using a Web Worker. Your audio files never leave your device. You can verify this by opening the Network tab in your browser's developer tools: no audio data is sent anywhere.

Does batch conversion work on phone?

Yes. The converter works in Safari on iPhone/iPad and in Chrome on Android. On iOS, tap Choose AAC files and select multiple files from the Files app. On Android, use the file picker to multi-select. See the iPhone guide for step-by-step instructions.

What if I have more than 20 files?

Convert them in batches. Finish the first 20, download the MP3s, then drop the next 20. For a large music library (hundreds of files), a desktop tool like ffmpeg is faster — the command-line section below explains how.