AudioUtils
How-To Guide

How to Convert MP4 to FLAC — Step by Step

Concert recordings, film soundtracks, and music videos often come as MP4 files. If you want to archive the audio at the highest possible quality, extracting to FLAC is the right move — lossless, compact compared to WAV, and playable on any modern device.

Understanding What FLAC From MP4 Means

A key technical point: the audio inside most MP4 files is already compressed with AAC, a lossy codec. Converting that AAC audio to FLAC does not recover lost data — it perfectly preserves whatever quality is in the AAC track without adding another generation of lossy compression. This is useful when you want to store the audio losslessly at its current quality and re-encode to other formats later without further degradation. If the source MP4 contains truly lossless audio (rare, but possible in some professional QuickTime exports), the FLAC output will be genuinely lossless.

Step-by-Step Conversion

Open the MP4 to FLAC converter on AudioUtils. Drop your MP4 file on the page. AudioUtils reads the MP4 container via WebAssembly FFmpeg, extracts the audio track, decodes the AAC to raw PCM, and encodes it as FLAC at compression level 5 (the balanced default). Click Convert. Download the FLAC file. FLAC encoding is lossless by definition — the PCM data is compressed without any loss. Add the file to your music library, archive storage, or lossless streaming upload.

What to Expect: File Sizes and Quality

A 10-minute MP4 video file at typical web quality contains audio that, when extracted to FLAC, produces a file of roughly 50-80 MB for stereo 44.1 kHz audio. High-sample-rate sources (48 kHz or 96 kHz) produce proportionally larger FLAC files. The quality is identical to the AAC audio in the source — no better, no worse. If the source MP4 has high-quality audio (256 kbps AAC or better), the FLAC will sound excellent. For concert recordings or professional video, FLAC extraction is a reliable archival strategy.

Common Issues and Fixes

Output file is very large: FLAC from a long video can be hundreds of megabytes. This is expected — FLAC is lossless and cannot compress as aggressively as lossy formats. If size matters, use MP3 or OGG instead. File duration seems wrong: Some MP4 files from cameras have variable frame rate video that confuses duration detection. The audio duration should be correct even if the video track had issues. Browser runs out of memory: Files over 2 GB can strain browser memory. For very long recordings, use FFmpeg on the command line.

Alternative Methods

FFmpeg: ffmpeg -i input.mp4 -vn -c:a flac output.flac. The -vn flag drops the video track. This is the most reliable method for large files or batch processing. Audacity: Import the MP4 (requires FFmpeg library), export as FLAC. VLC: Media, Convert, choose FLAC as output codec. MusicBrainz Picard: Can rip audio from video with plugins. For archival workflows involving many concert recordings or video files, FFmpeg in a shell script is the most practical solution.

Related Articles