.mp4

How to Extract Audio from MP4

Pull the audio track from any MP4 video — no re-encoding required.

Guide

Extracting audio from an MP4 is one of the fastest file operations because you don't need to re-encode anything. The audio is already stored as a separate stream inside the MP4 container — extraction just copies it out.

The simplest approach is a browser-based tool like fwip. Drop your MP4 file and download the audio track as MP3. The extraction happens locally in your browser with no upload required.

For lossless extraction, FFmpeg is the tool: `ffmpeg -i video.mp4 -vn -acodec copy audio.m4a`. The `-vn` flag strips the video, and `-acodec copy` copies the audio without re-encoding. Since most MP4 files use AAC audio, the output is an M4A file (AAC audio in an MP4 container). This is instant and lossless — the audio is bit-for-bit identical to what was in the video.

If you specifically need MP3, FFmpeg can convert in one step: `ffmpeg -i video.mp4 -vn -acodec libmp3lame -q:a 2 audio.mp3`. Quality 2 produces a high-quality VBR MP3 averaging around 190 kbps.

VLC (free, cross-platform) can also extract audio through its conversion dialog: Media → Convert/Save → Add file → Convert → Select audio format. It's less intuitive than the command line but works without installing FFmpeg.

Common use case: extracting music from a music video, pulling narration from a lecture recording, or grabbing audio from a screen recording for use in a podcast.

Do it with fwip

Free, instant, private. Your files never leave your browser.

FAQ
Can I extract audio from MP4 without losing quality?
Yes. Most MP4 files contain AAC audio, which can be extracted as an M4A file without any re-encoding. The audio is bit-for-bit identical to what's in the video.
What format is the audio inside an MP4?
Almost always AAC (Advanced Audio Coding). Some MP4 files use MP3 or AC3 audio, but AAC is the standard. Extracted audio is typically saved as M4A or converted to MP3.
Is it legal to extract audio from a video?
For personal use (extracting audio from your own recordings), yes. For copyrighted content like music videos, extraction for personal use falls into a legal grey area that varies by country. Redistribution of copyrighted audio is illegal.
Back to .mp4 overview
More about .mp4