Step-by-step instructions
- 1
Understand what you're creating
The output FLAC will be larger than the AAC, but not higher quality. A 256 kbps AAC converted to FLAC creates a large file that sounds identical to the AAC — no better, no worse. The FLAC container provides lossless storage of the already-compressed audio data decoded from AAC. If you need true lossless: you need the original recording before any AAC compression was applied.
Go to converter - 2
Method 1: Browser converter
Go to formatdrop.com → Audio Converter. Drop your AAC or M4A file. Select FLAC output. Download. The conversion decodes AAC to PCM, then losslessly compresses to FLAC.
- 3
Method 2: FFmpeg
ffmpeg -i input.m4a -c:a flac output.flac. FFmpeg decodes the AAC and writes lossless FLAC. Preserve all metadata: ffmpeg -i input.m4a -c:a flac -map_metadata 0 output.flac. For a specific FLAC compression level: ffmpeg -i input.m4a -c:a flac -compression_level 8 output.flac (8 = maximum compression, slower encode).
- 4
Verify the output
Play the FLAC file and compare with the AAC source — they should sound identical. The FLAC file will be larger than the AAC (typically 3-5x) but the audio content is unchanged.
Why convert AAC to FLAC?
There are genuine use cases for converting AAC to FLAC: (1) Standardizing a music library to one format — if you want all files as FLAC but some sources are AAC. (2) Processing pipelines that require FLAC input (some mastering tools, archiving systems). (3) Preventing further quality loss — putting AAC into FLAC stops any software from compressing it again. (4) Archive integrity — FLAC includes checksums, useful for long-term storage verification.
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
Is it worth converting AAC to FLAC?
Will AAC to FLAC conversion change how the music sounds?
No account. No upload. Works in any browser.