How to convert MP4 to MP3 online
The fastest way to pull the audio out of an MP4 video is to use an online converter like PixelTools' [MP4 to MP3 tool](/mp4-to-mp3). Drop your `.mp4` file onto the page, wait a few seconds while the audio track extracts, and download the resulting `.mp3`. There's no account to create, no software to install, and no file ever leaves your device — the whole conversion runs in your browser using WebAssembly.
Why extract audio from a video?
Video files carry a lot of weight you often don't need. If you recorded a podcast episode, an interview, a lecture, or a voice memo as video — because that's what your phone or camera produces by default — the video track is usually dead weight. Extracting just the audio gives you a file that's a fraction of the size, plays anywhere an MP3 plays, and is what podcast platforms, transcription tools, and audio editors actually expect as input.
What actually happens during the conversion
The tool decodes your video, isolates the audio track, and re-encodes it as an MP3 at a high-quality variable bitrate (around 190kbps). Because only the audio is touched — the video frames are never re-encoded — the process is quick even for longer files, and the audio quality stays close to the source. Supported input formats include MP4, MOV, AVI, MKV, and WebM, so this works as a general video-to-MP3 converter, not just for MP4 specifically.
Privacy, file size, and other practical details
Because conversion happens entirely client-side, it's a good option for footage you'd rather not upload anywhere — personal recordings, unreleased interviews, or anything sensitive. Files up to 2GB are supported; very large files simply take longer since your device's CPU is doing the work instead of a remote server. The first conversion in a session takes a little longer while your browser downloads the audio engine once — after that, it's cached and later conversions start immediately.
Other ways to convert MP4 to MP3
If you'd rather not use a browser tool, there are a few offline options:
ffmpeg (command line): `ffmpeg -i input.mp4 -vn -ab 192k output.mp3` extracts and encodes the audio in one command — the same underlying approach browser-based tools use, just run locally.
VLC: Media → Convert/Save, choose your MP4, select an MP3 profile, and export.
QuickTime Player (Mac): File → Export As doesn't offer MP3 directly, but exporting audio-only and converting with iTunes/Music works as a workaround.
For a one-off conversion with no setup, an online tool is faster than installing and learning any of these.