Audio conversion
How to convert AAC to MP3 on Windows
· 6 min read
Open aac2mp3.com in any browser on your Windows PC, drag your .aac or .m4a files onto the page, pick a bitrate (192 kbps works for most music), and click Download MP3. The conversion runs locally in your browser — nothing is uploaded, no software is installed, and it works on Windows 10 and 11.
How to convert AAC to MP3 on Windows
Three steps in your browser — no install, no signup, no upload. The conversion runs on your PC's own processor.
Open the converter in your browser
Go to aac2mp3.com in Chrome, Edge, Firefox or any browser on your Windows PC. No software install, no account, no extension needed.
Drop or choose your AAC files
Drag .aac, .m4a, .m4b or .m4r files from File Explorer onto the drop zone, or click Choose AAC files and pick them from any folder. You can add up to 20 files per batch.
Pick a bitrate and download
Select an MP3 bitrate — 192 kbps is a good default for music. Conversion runs on your PC, not on a server. When each file finishes, click Download MP3 to save it to your Downloads folder.
Method 1: Browser converter (fastest, no install)
The AAC to MP3 converter works in Chrome, Edge, Firefox, Brave — any modern browser on Windows. It decodes your AAC file using the browser's built-in audio engine and re-encodes it to MP3 with a JavaScript-based LAME encoder running in a Web Worker.
Because everything runs client-side, there is no file-size cap enforced by a server, no queue, and no wait time. A 100 MB audiobook chapter converts just as easily as a 3 MB voice recording. You can convert up to 20 files per batch — drag them all at once or add them one by one.
This is the best option if you need a quick conversion without installing anything. If you convert files regularly or need to process hundreds of files at once, the desktop methods below give you more automation.
Method 2: VLC Media Player
VLC is free, open-source, and already installed on many Windows PCs. It can convert audio formats, though the option is buried in the menus.
- Open VLC and go to Media > Convert / Save (or press Ctrl+R).
- Click Add and select your .aac or .m4a files. Click Convert / Save.
- In the Profile dropdown, select Audio – MP3. If you need a specific bitrate, click the wrench icon to open profile settings and set it under Audio codec > Bitrate.
- Choose a destination file and click Start. VLC encodes the file and saves the MP3.
VLC works well for one-off conversions but does not support batch output to separate files easily. For multiple files, the browser converter or ffmpeg is faster.
Method 3: ffmpeg (command line)
ffmpeg is the gold standard for audio and video conversion. It is free, open-source, and runs on every version of Windows. Install it via winget install ffmpeg in PowerShell, or download the binaries and add them to your PATH.
To convert a single file:
ffmpeg -i input.aac -codec:a libmp3lame -b:a 192k output.mp3To batch-convert every .aac file in a folder (PowerShell):
Get-ChildItem *.aac | ForEach-Object {
ffmpeg -i $_.Name -codec:a libmp3lame -b:a 192k ($_.BaseName + ".mp3")
}Replace 192k with 256k or 320k for higher quality. For .m4a files, swap *.aac with *.m4a — the rest of the command stays the same.
ffmpeg is the best choice when you have hundreds of files or want to script conversions into an automated workflow. For everything else, the browser converter is simpler. See the batch conversion guide for more details on large-scale conversion.
Finding AAC files on your Windows PC
The most common source of AAC files on Windows is iTunes (or the Apple Music app on Windows 11). Purchased songs are DRM-free .m4a files at 256 kbps AAC, stored by default in:
C:\Users\YourName\Music\iTunes\iTunes Media\MusicApple Music streaming tracks are DRM-protected and cannot be converted by any tool. If a file fails to load in the converter, it is likely a protected stream rather than a purchased track.
To find all AAC files on your PC, open File Explorer and type *.aac OR *.m4a in the search bar. You can then select the files you want and drag them directly into the browser converter.
Choosing the right bitrate
| Source | Best MP3 bitrate | Why |
|---|---|---|
| Voice recording / podcast | 128 kbps | Speech is narrow-band; 128 kbps is transparent |
| General music | 192 kbps | Good balance of quality and file size |
| iTunes purchase (256 kbps AAC) | 256 kbps | Matches the source; no audible loss |
| High-quality recording | 320 kbps | Maximum headroom for critical listening |
For a full explanation of why AAC-to-MP3 conversion affects quality and how to minimize the loss, read the quality-loss guide. For a broader comparison of the two formats, see AAC vs MP3.
Why a browser converter beats desktop software
Most desktop AAC-to-MP3 converters for Windows are ad-supported, bundle unwanted toolbars, or require a paid license for bitrates above 128 kbps. Some upload your audio to a remote server for processing.
A browser converter avoids all of that. There is nothing to install, nothing to uninstall, no registry entries, and no background process. Your audio stays on your PC because the encoding happens in a Web Worker inside your browser. And because there is no server involved, there is no file-size limit, no queue, and no daily conversion cap.
Ready to convert?
Open the free AAC to MP3 converter in your browser — drag your files onto the page, pick a bitrate, and download the MP3. Nothing is uploaded, no install needed. For .m4a files from iTunes, the M4A to MP3 converter page has M4A-specific guidance. On iPhone or iPad? See the iOS guide.