You can extract MP3 audio from any MP4 video directly in your browser — no software install, no account needed. Drop the file, wait 10–30 seconds, and download the audio. The whole process stays on your device.
Quick answer: Open the MP4 to MP3 converter in Chrome, drop your file, and download the extracted audio in under a minute. Your video file never leaves your device.
Why would you even do this in a browser?
Converting MP4 to MP3 used to mean downloading software like Handbrake or VLC. These days you can do it entirely in your browser, no install required.
Your videos are private. A 30-minute lecture, a meeting recording, a personal video — you don't want that uploaded to a random server. Browser tools run using WebAssembly — the same technology browsers use for games and complex applications — which means the processing happens locally on your device.
How does MP4 to MP3 conversion actually work?
An MP4 file is a container. Inside it, there's usually a video stream (often H.264) and an audio stream (often AAC or MP3 already). When you "convert" MP4 to MP3, what's really happening is:
- The audio track is extracted from the MP4 container
- It's re-encoded as an MP3 file (or sometimes just pulled out if it's already in a compatible format)
This is why the process is usually fast — you're not re-encoding the entire video, just pulling out the audio.
What audio quality should I expect?
The output quality depends on the original video's audio quality. If the MP4 has low-quality audio, the MP3 will also be low quality — you can't improve what wasn't recorded well.
For most purposes, a 128 kbps MP3 is fine (voice calls, podcasts, lectures). For music, you'd want 192–320 kbps. Most tools default to 128 kbps; look for a quality setting if you need higher.
Common quality settings:
- 64 kbps — Speech only, small file, acceptable quality
- 128 kbps — Standard. Good for podcasts and voice
- 192 kbps — Good for music
- 320 kbps — Best quality, larger file
How much smaller will the MP3 be?
Significantly smaller. A 100MB MP4 might produce an MP3 of:
- 5–10MB at 128 kbps
- 15–20MB at 320 kbps
Audio is a tiny fraction of a video file's size. Most of the space in a video is the visual frames.
I converted a 45-minute recorded webinar (about 400MB as MP4) and got a 28MB MP3 I could listen to while driving. Same content, no screen needed, a tenth of the file size.
What if I prefer desktop software?
VLC Media Player (free)
Open your MP4, go to Media → Convert/Save, select the file, choose Audio MP3 as output. Works offline, handles large files well.
FFmpeg (command line)
ffmpeg -i video.mp4 -q:a 2 audio.mp3
If you're comfortable with a terminal, FFmpeg is the most powerful option. -q:a 2 gives high quality (scale is 0–9, lower is better).
Audacity (free)
Mainly an audio editor, but it can import MP4 (with the FFmpeg plugin) and export as MP3.
What do I do if something goes wrong?
"The MP3 is out of sync" This is rare with modern tools. If it happens, the original MP4 might have a timestamp mismatch between audio and video. Try trimming the first second off the start.
"The audio cuts out partway through" The MP4 might be corrupted or partially downloaded. Check that the original file plays fully in a video player before converting.
"The file is larger than expected" You might have accidentally selected a very high bitrate. 128 kbps is usually enough. Also check if the tool exported in WAV or another uncompressed format instead of MP3.
"The conversion is very slow" For large files (1GB+), browser-based tools can be slow because they process in your browser's memory. For very large videos, VLC or FFmpeg on your desktop will be faster.
What about DRM-protected videos?
If the MP4 was downloaded from a streaming service or has DRM protection, you can't extract the audio — not with any legal tool. DRM-protected files are encrypted and require the original platform's player.
This guide is for videos you own — recordings you made yourself, purchased videos, or creative commons content.
When would you actually use this?
- Extracting a podcast from a YouTube video you saved offline
- Converting a recorded Zoom or Teams meeting to audio for easy listening
- Getting the audio from a music video you own
- Turning a video tutorial into something you can listen to while driving
- Archiving just the audio from a lecture or conference talk
For any of these, a browser-based converter is the fastest, safest option. You don't need to install anything and your files stay private.
Frequently asked questions
Can I convert multiple MP4 files to MP3 at once? Most browser-based tools process one file at a time. For batch audio extraction, FFmpeg with a shell script is the most efficient approach for large collections.
Is this completely free? Yes — no account, no payment, no watermark needed. You can use it as many times as you want.
Do my files get uploaded to a server? No. Everything runs directly in your browser using WebAssembly. Your files never leave your device.