MP4 to MP3 Converter Online — How to Extract Audio from Video
Sometimes you only need the audio. A conference talk, a music video, a podcast recorded on your phone as MP4 — the video stream is dead weight. This guide explains how the MP4 to MP3 Converter works, how to choose the right bitrate, and which use cases benefit most from browser-based audio extraction.
Why Extract Audio from Video?
Video files carry two separate data streams: a video stream and an audio stream. When you only need the audio, keeping the video stream wastes storage and makes the file incompatible with music players, podcast apps, and most audio workflows. A 500 MB MP4 of a 1-hour lecture might produce a 50–80 MB MP3 — a 6–10x reduction with zero quality loss on the audio side.
Common scenarios where audio extraction is the right move:
- Conference recordings and webinars you want to listen to while commuting
- Music videos where you want the audio track in your music library
- Phone-recorded interviews saved as MP4 that need to be transcribed
- YouTube downloads (saved locally) where only audio is needed
- Screen recordings of online meetings where the video is irrelevant
How the Converter Works
The tool runs FFmpeg compiled to WebAssembly (FFmpeg.wasm) directly in your browser. FFmpeg is the same open-source engine used by YouTube, VLC, Handbrake, and most professional video software. The WASM build executes the full FFmpeg binary inside a browser tab — no server receives your file.
The conversion command used under the hood is equivalent to:
ffmpeg -i input.mp4 -vn -ar 44100 -ac 2 -b:a 192k output.mp3
Where -vn drops the video stream, -ar 44100 sets the audio sample rate to the CD standard (44.1 kHz), -ac 2 outputs stereo, and -b:a controls the bitrate you choose.
Choosing the Right Bitrate
The bitrate setting is the most important quality decision. Higher bitrates produce larger files but preserve more audio detail. The relationship is not linear — the difference between 128 and 192 kbps is more audible than the difference between 192 and 320 kbps.
| Bitrate | File size (1 hour) | Best for | Audible difference from 320 kbps |
|---|---|---|---|
| 128 kbps | ~56 MB | Speech, podcasts, lectures, voice memos | Noticeable on music, negligible on voice |
| 192 kbps | ~84 MB | Music, general use, balanced quality/size | Rarely audible in blind tests |
| 320 kbps | ~140 MB | High-fidelity music archiving, audiophile use | Reference — no degradation |
One important constraint: the output quality is capped by the source quality. If the original video contains 128 kbps audio, exporting at 320 kbps will not recover lost detail — it will only increase file size. Match the output bitrate to the source quality when possible.
How to Convert MP4 to MP3
- Open the tool. Go to the MP4 to MP3 Converter. No signup, no account.
- Drop or select your video file. Drag an MP4 (or MOV, AVI, MKV, WebM) onto the drop zone, or click "Browse file." Files up to 500 MB are supported.
- Choose a bitrate. 192 kbps is the right choice for most music. Use 128 kbps for speech-only content. Use 320 kbps when archiving high-quality music.
- Click Convert to MP3. The first conversion loads the FFmpeg engine from a CDN (~10 MB), which takes 5–15 seconds. After that, conversion runs at your CPU's speed.
- Preview and download. An audio player appears so you can verify the output before saving. Click "Download MP3" to save the file.
Advanced Use Cases
Extracting audio from screen recordings
Video meeting recordings (Zoom, Teams, Google Meet) saved as MP4 often contain important audio — transcripts, decisions, action items — that you want to feed into a transcription tool or simply store as a smaller file. Converting the meeting recording to MP3 at 128 kbps typically reduces the file size by 80–90% with no loss to voice intelligibility.
Building a music library from music videos
If you have legally downloaded music videos (MP4), converting them to MP3 lets you add the tracks to any music player. After conversion, use a tagging tool like mp3tag to add the artist, album, and album art metadata that the raw audio extraction does not include.
Preparing audio for transcription
Transcription services like Whisper, Otter.ai, and similar tools accept MP3 files. If your recording exists only as an MP4, converting first reduces upload time and cost (many services charge by file size or duration). 128 kbps is perfectly sufficient for transcription accuracy — the models are trained on compressed audio.
Converting large files on slow machines
FFmpeg.wasm is single-threaded in this implementation, so very large files (200+ MB) may take several minutes on older or mobile devices. Close other browser tabs to free RAM and CPU before converting. The progress bar shows percentage complete so you can estimate remaining time.
Common Questions
Is my video file uploaded anywhere?
No. The entire conversion runs in your browser using WebAssembly. The file never leaves your device — there is no server, no cloud storage, no data transfer. The FFmpeg engine itself is loaded from a CDN (unpkg.com) on first use, but your video is processed entirely locally.
Which formats are supported as input?
Any video format that FFmpeg can decode: MP4 (H.264, H.265), MOV, AVI, MKV, WebM, M4V, FLV, WMV. The output is always a standard 44.1 kHz stereo MP3 compatible with all music players, phones, and audio applications.
Why does the first conversion take longer?
The FFmpeg WebAssembly engine (~10 MB) is fetched from unpkg.com on the first conversion and cached in memory. Subsequent conversions in the same tab load immediately. If you close and reopen the tab, the engine loads again from the CDN.
Does the MP3 include album art or track metadata?
No. The tool extracts the raw audio stream and does not copy video metadata into the MP3 tags. Use a free tagger like mp3tag (Windows/Mac) or MusicBrainz Picardto add title, artist, and album art after conversion.
Convert MP4 to MP3 Free
Browser-based, no upload, no signup. Supports MP4, MOV, AVI, MKV, WebM up to 500 MB.
Open MP4 to MP3 Converter