The technical side
What actually happens when you convert
The demux step
An MP4 file is a container — think of it as a zip that holds a video stream (H.264 or H.265) and an audio stream (usually AAC) bundled together. Conversion starts by pulling just the audio track out. No re-decoding of video happens at all.
The encode step
That raw audio is then handed to the LAME MP3 encoder — the same library used by VLC and professional DAWs. LAME compresses it at your chosen bitrate, discarding frequencies below the threshold of human hearing. At 192+ kbps, the result is virtually indistinguishable from the source.
Bitrate decoded
Picking the right quality for your use case
Why extract audio?
The file size argument alone is compelling
A three-minute 1080p MP4 typically weighs 50–80 MB. The same content as a 192 kbps MP3 is roughly 4 MB — a 15× reduction. That gap matters when you're syncing files to a phone on limited storage, sharing over a messaging app, or building a lecture library for commuting.
Beyond storage, audio-only files unlock use cases video can't touch: background playback on a locked iPhone screen, car stereo compatibility, direct import into music apps, podcast RSS feeds, and transcription pipelines. Stripping the visual layer gives you something universally compatible.