FormatDrop
How-To Guide

How to Convert ALAC to MP3

ALAC stores audio at CD quality or higher — larger files suitable for archiving but overkill for casual listening. Converting to MP3 produces files 10–20× smaller that play on every device imaginable: car stereos, older phones, cheap Bluetooth speakers, game consoles, and streaming platforms. The quality difference is inaudible at 320 kbps and negligible at 192 kbps for most listeners.

Step-by-step instructions

  1. 1

    FFmpeg (command line, any OS)

    Best quality: `ffmpeg -i input.m4a -c:a libmp3lame -b:a 320k -id3v2_version 3 output.mp3`. Standard quality: `ffmpeg -i input.m4a -c:a libmp3lame -q:a 2 output.mp3` (VBR ~190 kbps, widely considered 'transparent'). The -q:a flag uses LAME VBR (0=best, 9=worst). For batch: `for f in *.m4a; do ffmpeg -i "$f" -c:a libmp3lame -q:a 2 "${f%.m4a}.mp3"; done`. Add `-map_metadata 0` to preserve iTunes metadata in the MP3.

    Go to converter
  2. 2

    iTunes/Music app on Mac (simplest for Apple users)

    Open Apple Music (or iTunes on older macOS). Preferences → Files → Import Settings → Import Using: MP3 Encoder → Setting: Custom (set to 320 kbps CBR or 'iTunes Plus' for 256 kbps AAC). Select the ALAC tracks in your library. File → Convert → Create MP3 Version. Apple Music creates MP3 copies in your library and preserves all metadata.

  3. 3

    VLC (GUI, Windows/Mac/Linux)

    Open VLC. Media → Convert/Save → Add the M4A/ALAC file → click Convert/Save. In the Profile settings, select Audio - MP3. Click the wrench to configure: set bitrate to 192 or 320 kbps. Name the output file with .mp3 extension. Click Start. VLC processes the file in the background — check the timeline progress bar.

  4. 4

    fre:ac or dBpoweramp (Windows, batch)

    fre:ac (free): download from freac.org. Add all M4A files. Set encoder to LAME MP3. Set bitrate to 320 kbps CBR or use the VBR preset. Set output folder. Click Convert. Handles hundreds of files automatically, preserves metadata. dBpoweramp (paid): right-click files in Explorer → Convert To → MP3 → set LAME quality. Both apps preserve album art and all ID3 tags.

Why convert ALAC to MP3?

ALAC is a perfect archive format but impractical for devices that need compatibility over fidelity. MP3 at 320 kbps is universally accepted and sounds excellent for casual listening.

Your files never leave your device

FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.

Frequently asked questions

What MP3 bitrate should I use for ALAC conversion?
320 kbps CBR: maximum quality, 10 MB/minute for stereo audio, plays on everything. 256 kbps CBR: excellent quality, 8 MB/minute, the level Apple uses for iTunes purchases. 192 kbps: good quality for most listeners, 6 MB/minute. LAME V2 VBR (~190 kbps average): widely regarded as transparent to the source on a double-blind ABX test. Avoid going below 128 kbps for music — it's audibly degraded. For audiobooks or speech, 128 kbps is fine since the human voice has a narrower frequency range.
Should I use CBR or VBR for MP3?
VBR (variable bitrate) produces better quality at a given file size because it allocates more bits to complex audio passages and fewer to simple ones. LAME VBR with -q:a 2 (V2 preset) is the standard recommendation — quality indistinguishable from lossless at around 190 kbps average. CBR (constant bitrate) at 320 kbps is preferred for hardware devices that don't fully support VBR seeking, older car stereos, and some streaming platforms that require fixed bitrate.
Will converting ALAC to MP3 delete my original files?
No — every tool mentioned here creates a new MP3 file while leaving the original ALAC intact. FFmpeg writes a new file, never modifying the source. iTunes/Music creates a copy in the library. VLC and fre:ac write to a specified output folder. Always confirm the output before deleting originals, and keep ALAC for archival purposes.
Convert ALAC to MP3 Now — Free

No account. No upload. Works in any browser.