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.