About MP4 to MP3
AntiUpload's MP4 to MP3 converter pulls the audio track out of any video file and saves it as a clean MP3. The most common use case is people who downloaded a YouTube video, recorded a Zoom call, or saved a video on their phone, and now want just the audio — a podcast they can listen to in the car, a song they can put on a phone's music app, a lecture they can take notes against without staring at the video. The tool handles MP4 (the most common search query) plus MOV, WebM, MKV, AVI, M4V, and FLV inputs — anything FFmpeg can decode, which is essentially every container in mainstream use.
What makes this tool different from the dozens of "video to mp3" sites in Google is what doesn't happen: nothing uploads. Sites like Y2Mate, OnlineConvert, and 123apps all upload your source video to their servers, convert it there, and stream the result back. That's why those sites cap free users at 100-200 MB — they're paying for the bandwidth and storage. The conversion here happens in your browser with FFmpeg compiled to WebAssembly. There's no server-side bandwidth bill for us to pass on, so there's no file-size limit and no watermark and no "upgrade for unlimited" upsell. The whole encode runs on your CPU; verify in DevTools Network panel.
Output quality is a CBR ladder from 64 kbps (acceptable voice quality, smallest file) to 320 kbps (transparent-quality, large file), with a VBR option for variable bitrate encoding that gets smaller files at the same perceived quality. The libmp3lame encoder bundled in our FFmpeg WASM build is the reference open-source MP3 encoder — same one Audacity and FFmpeg desktop use. There's also a channels selector (preserve / mono / stereo) so you can collapse stereo dialogue to mono to halve the file size, useful for voice content where stereo carries no information.
How it works
- Drop your video fileAccepts MP4, MOV, WebM, MKV, AVI, M4V, FLV. There is no size limit — drop a 2-hour 4 GB recording if you need to. The file stays on your device.
- Pick the MP3 qualityCBR options from 64 kbps (talk-radio quality, smallest) to 320 kbps (Spotify-Premium quality, largest). VBR option for variable bitrate — produces smaller files at the same perceived quality (libmp3lame V0 setting). Default is 192 kbps which is fine for most uses.
- Optionally set channelsSource layout preserves what the video had (usually stereo). Mono collapses to one channel — halves the file size, fine for voice. Stereo forces stereo output if your source is mono (rarely useful).
- Click Extract MP3Audio extraction is fast because there is no video re-encoding — we just drop the video stream and re-encode the audio with libmp3lame. A 2-hour video typically extracts to MP3 in under 30 seconds on a modern laptop. The MP3 downloads instantly when done.