
AAC is the default audio format for Apple devices, YouTube downloads, and most streaming rips. It sounds better than MP3 at the same bitrate. But here’s the thing – tons of software and hardware still only speaks MP3. Old car stereos, budget Bluetooth speakers, some DJ software, WordPress podcast plugins, cheap voice recorders. If you’ve ever had a file that just wouldn’t play, it was probably AAC.
I tested over a dozen AAC to MP3 converters across two weeks. Online tools, desktop apps, command-line options. Some were great. Some corrupted my files. Here’s what actually works without paying anything.
For a broader look at audio format conversion, check our guide to the best free audio converters – it covers more formats beyond just AAC and MP3.
Quick Comparison: AAC to MP3 Converters
| Tool | Type | Batch Convert | Max File Size | Quality Options | Best For |
|---|---|---|---|---|---|
| CloudConvert | Online | Yes (5/day free) | 1 GB | 32-320 kbps | Best overall online converter |
| fre:ac | Desktop | Yes (unlimited) | No limit | Full control | Batch converting entire folders |
| VLC Media Player | Desktop | Yes | No limit | Configurable | Users who already have VLC |
| FFmpeg | CLI | Yes (scripted) | No limit | Full control | Automation and scripting |
| FreeConvert | Online | Yes | 1 GB | 64-320 kbps | Quick one-off conversions |
| Audacity | Desktop | No (one at a time) | No limit | Full control | Editing audio before converting |
| MediaHuman Audio Converter | Desktop | Yes | No limit | Presets + custom | Non-technical users on desktop |
| Online Audio Converter (123apps) | Online | Yes | 10 GB | Slider (64-320 kbps) | Large files without signup |
1. CloudConvert
CloudConvert handles AAC to MP3 better than any other online tool I tested. Upload your file, pick MP3 as output, adjust the bitrate if you want, and hit convert. The whole process took about 8 seconds for a 5-minute track.
The free tier gives you 25 conversion minutes per day and up to 5 files. That’s enough for casual use. You get full control over bitrate (anywhere from 32 to 320 kbps), sample rate, and channels. Most online converters lock the good settings behind a paywall. CloudConvert doesn’t.
One thing I noticed: it preserves metadata. Album art, track titles, artist info – all carried over to the MP3 output. Not every tool does this, and it matters if you’re converting a music library.
What I liked
- No signup needed for basic conversions
- Full bitrate control on free tier
- Preserves ID3 tags and album art
- API available for developers
What could be better
- 5 files/day limit on free plan
- Requires uploading files to their servers
2. fre:ac (Free Audio Converter)
If you need to convert hundreds of AAC files, fre:ac is the answer. It’s open source, runs on Windows, macOS, and Linux, and handles batch conversion like nothing else in the free tier.
I threw 347 AAC files at it from an old iTunes library. It converted all of them in about 12 minutes at 256 kbps. No crashes, no corrupted files. The output quality was indistinguishable from the originals at that bitrate.
The interface looks dated. It feels like software from 2008. But honestly, who cares? You’re converting audio files, not designing a poster. It supports LAME MP3 encoding, which is the gold standard for MP3 quality, and gives you access to every encoding parameter you could want.
What I liked
- True unlimited batch conversion
- Open source, no ads, no upsells
- Uses LAME encoder (best MP3 quality)
- Handles broken or partially corrupted AAC files gracefully
- Cross-platform
What could be better
- UI is outdated and confusing at first
- No drag-and-drop on Linux builds
3. VLC Media Player
You probably already have VLC installed. Most people don’t know it can convert audio files. Go to Media > Convert/Save, add your AAC file, pick the Audio – MP3 profile, choose where to save it, and click Start. Done.
The conversion quality is solid. VLC uses its own MP3 encoding pipeline and the output sounds clean at 192 kbps and above. Below that, CloudConvert and fre:ac produce slightly better results, but the difference is barely noticeable unless you’re using studio headphones.
Batch conversion works through the command line. You can feed VLC a list of files using cvlc with the --sout flag. Not as elegant as fre:ac’s GUI batch mode, but it gets the job done.
What I liked
- Already installed on most computers
- No additional download needed
- Works offline, files stay private
What could be better
- Conversion UI is buried in menus
- Batch converting requires command line
- No metadata preservation
4. FFmpeg
FFmpeg converts AAC to MP3 with one command:
ffmpeg -i input.aac -codec:a libmp3lame -qscale:a 2 output.mp3
That gives you variable bitrate at roughly 190 kbps, which sounds excellent. If you want constant 320 kbps instead, swap -qscale:a 2 for -b:a 320k.
For batch conversion, a quick bash loop handles an entire folder:
for f in *.aac; do ffmpeg -i "$f" -codec:a libmp3lame -qscale:a 2 "${f%.aac}.mp3"; done
I ran that against 500+ files. Took about 4 minutes on a mid-range laptop. FFmpeg is the fastest converter I tested by a wide margin. The tradeoff is obvious: you need to be comfortable with the terminal. If ffmpeg -i looks alien to you, use fre:ac or CloudConvert instead.
If you work with video files too, our guides on converting MKV to MP4 and AVI to MP4 cover FFmpeg’s video conversion capabilities.
What I liked
- Fastest converter tested (by far)
- Scriptable for automation
- Uses libmp3lame – same encoder as fre:ac
- Completely offline
What could be better
- Command line only
- Installation varies by OS
5. FreeConvert
FreeConvert is a clean online converter that does exactly what the name promises. Upload your AAC file, pick MP3, optionally adjust the bitrate, and download the result. The interface is straightforward and the conversion is fast – about 10 seconds for a typical song.
The free plan allows files up to 1 GB and gives you 25 free conversion minutes per day. You can set bitrate from 64 to 320 kbps. There’s also a trim option that lets you cut the audio before converting, which is surprisingly useful when you only need part of a recording.
Privacy note: your files get deleted from their servers after 4 hours automatically, or you can delete them manually right after downloading.
What I liked
- Clean, ad-light interface
- Built-in trim/cut feature
- 1 GB file size limit (generous)
What could be better
- Slower than CloudConvert for batch files
- Free tier has daily conversion limits
6. Audacity
Audacity isn’t really a converter. It’s a full audio editor that happens to support AAC import and MP3 export. But that’s exactly why it’s on this list – sometimes you need to edit the audio before converting it.
Maybe you want to trim silence from the beginning. Maybe you need to normalize the volume or remove a section. Audacity lets you do all of that, then export directly to MP3. For the MP3 export to work, you need the LAME encoder plugin, but Audacity 3.x bundles it automatically. No extra downloads.
I wouldn’t use Audacity to batch-convert 200 files. That would take forever. But for converting one or two files where you also want to make edits? Nothing beats it.
What I liked
- Full editing before export
- Noise reduction, normalization, effects
- LAME MP3 encoder built in (since v3.x)
- Open source, cross-platform
What could be better
- Overkill for simple format conversion
- No batch processing without macros
- Startup time is slow with large files
7. MediaHuman Audio Converter
MediaHuman sits in a sweet spot between “too simple” online tools and “too complex” FFmpeg. It’s a desktop app with a drag-and-drop interface. Drop your AAC files in, pick MP3 from the format dropdown, hit the convert button. That’s it.
It comes with presets for common scenarios: high quality (320 kbps), medium (192 kbps), and compact (128 kbps). You can also create custom presets if the defaults don’t work for you. Batch conversion is built in – I converted 85 files in one go without issues.
The app is free for personal use on Windows and macOS. There’s no Linux version, which is a drawback if you’re on Ubuntu or similar.
What I liked
- Genuinely easy drag-and-drop interface
- Good preset system
- Preserves folder structure in output
What could be better
- No Linux support
- Occasional update nag popups
- Slightly slower encoding than fre:ac
8. Online Audio Converter (123apps)
This is the tool I recommend when someone just wants to convert one file right now, no questions asked. Open the website, upload your AAC file (up to 10 GB – the most generous limit I’ve seen), drag the quality slider to where you want it, and click Convert.
The quality slider goes from 64 to 320 kbps. There are also advanced settings where you can adjust sample rate, channels, and even apply a fade in/out. The 10 GB limit means you can throw audiobook files, long podcast recordings, or DJ mixes at it without running into size restrictions.
No account needed. No install. Works in any browser. The conversion speed depends on your internet connection since the file gets uploaded and processed server-side, but for files under 100 MB it’s basically instant.
What I liked
- 10 GB file size limit
- No account or signup required
- Quality slider is intuitive
- Supports Google Drive and Dropbox import
What could be better
- Ads on the page (not intrusive but present)
- Large files take time to upload
AAC vs MP3: Do You Actually Need to Convert?
Before you convert anything, quick reality check. AAC is technically a better format than MP3. At 128 kbps, AAC sounds noticeably cleaner than MP3 at the same bitrate. If your device or software supports AAC, there’s no reason to convert. You’ll lose a tiny bit of quality every time you transcode between lossy formats.
Convert when you have to – a device that only plays MP3, software that doesn’t accept AAC, or a platform that requires MP3 uploads. Don’t convert just because MP3 feels more “standard.” If you’re also working with document formats, our best free file converter tools guide covers a wider range of format conversions.
What Bitrate Should You Use?
This comes up a lot. Here’s the practical breakdown:
- 320 kbps – Maximum quality. Use for music you care about. The file size is roughly 2.4 MB per minute.
- 192-256 kbps – The sweet spot for most people. Sounds great on normal speakers and headphones. About 1.5-2 MB per minute.
- 128 kbps – Fine for spoken word, podcasts, audiobooks. Noticeable quality loss on music. About 1 MB per minute.
- 64 kbps and below – Only use for voice recordings where file size matters more than quality.
If you’re converting AAC files that were already encoded at 128 kbps, converting to 320 kbps MP3 won’t improve quality. You can’t add quality that wasn’t there. Match your output bitrate to your source, or go slightly higher to minimize generational loss.
My Recommendation
For most people, CloudConvert or Online Audio Converter handles the job. Upload, convert, download, done. If you have more than a handful of files, install fre:ac. It’s free, handles batch conversion effortlessly, and uses the best MP3 encoder available.
If you’re technical and comfortable with the terminal, FFmpeg is the fastest option and gives you complete control. Everyone else should skip it.
For a deeper comparison of all major format conversion tools, see our complete audio converter roundup.
FAQ
Is converting AAC to MP3 free?
Yes. Every tool in this guide offers free AAC to MP3 conversion. Online tools like CloudConvert and FreeConvert have daily limits (5-25 files) but don’t charge for basic use. Desktop tools like fre:ac, VLC, and Audacity are completely free with no restrictions.
Does converting AAC to MP3 lose quality?
Yes, technically. Both AAC and MP3 are lossy formats, so transcoding from one to the other means a small quality reduction. At 256 kbps or higher, most people can’t hear the difference. For archival purposes, convert to FLAC or WAV instead if you want lossless output.
What is the best bitrate for AAC to MP3 conversion?
192-256 kbps works for most situations. Use 320 kbps if you want maximum quality and don’t care about file size. For podcasts and voice recordings, 128 kbps is enough. Never go higher than the original AAC file’s bitrate – it won’t improve quality.
Can I convert AAC to MP3 on iPhone or Android?
Yes. The online tools (CloudConvert, FreeConvert, Online Audio Converter) all work in mobile browsers. No app installation needed. For offline conversion on Android, apps like Media Converter or VLC for Android can handle the job. On iPhone, the Shortcuts app can automate the conversion using built-in system codecs.
How do I batch convert multiple AAC files to MP3?
For large batches, use fre:ac (desktop, unlimited files), FFmpeg (command line, scriptable), or MediaHuman Audio Converter (desktop, drag-and-drop). Online tools work for small batches but have daily limits. fre:ac converted 347 files in about 12 minutes in my testing.