Skip to content
AAC to MP3

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.

  1. 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.

  2. 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.

  3. 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.

  1. Open VLC and go to Media > Convert / Save (or press Ctrl+R).
  2. Click Add and select your .aac or .m4a files. Click Convert / Save.
  3. 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.
  4. 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.mp3

To 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\Music

Apple 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

SourceBest MP3 bitrateWhy
Voice recording / podcast128 kbpsSpeech is narrow-band; 128 kbps is transparent
General music192 kbpsGood balance of quality and file size
iTunes purchase (256 kbps AAC)256 kbpsMatches the source; no audible loss
High-quality recording320 kbpsMaximum 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.

AAC to MP3 on Windows — frequently asked questions

Can Windows convert AAC to MP3 without extra software?

Not natively — Windows Media Player and the built-in Movies & TV app play AAC but cannot re-encode it as MP3. The fastest option is a browser-based converter like aac2mp3.com: open the page, drop your file, download the MP3. No install, no account.

Does converting AAC to MP3 lose quality?

Slightly, because both are lossy codecs and the audio is re-encoded. At 192 kbps or above the difference is inaudible on headphones and speakers. For critical listening, use 256 or 320 kbps. The quality guide covers bitrate selection in detail.

Can I batch-convert multiple AAC files on Windows?

Yes. The browser converter accepts up to 20 files at once — drag a selection from File Explorer onto the drop zone and they convert in parallel. For larger batches, ffmpeg can process an entire folder with a one-line PowerShell loop.

Where are AAC files stored on Windows?

iTunes purchases live in your Music > iTunes > iTunes Media > Music folder. Files imported from an iPhone appear wherever you synced them. Use File Explorer to search for *.aac or *.m4a to find them.

Is the browser converter safe for private audio?

Yes. The conversion runs entirely in your browser using JavaScript — your audio files never leave your PC. There is no upload, no server processing, and no data stored anywhere. You can verify by opening the browser's Network tab during conversion.

What is the difference between .aac and .m4a?

Both contain AAC-encoded audio. The .aac extension is raw AAC, while .m4a wraps AAC inside an MP4 container (used by iTunes and Apple Music purchases). The converter handles both formats identically.