PublicSoftTools
Tools16 min read·PublicSoftTools Team·May 2026

MP4 to MP3 Converter Online — No Upload, No Account

When you only need the audio from a video file, keeping the video stream wastes storage and makes the file incompatible with music players and podcast apps. The free MP4 to MP3 Converter extracts and converts audio from any video file entirely in your browser — no uploads, no signup, no cloud processing.

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 creates compatibility problems with music players, podcast apps, and audio workflows.

A 500 MB MP4 of a 1-hour lecture might produce a 50–80 MB MP3 — a 6–10x reduction with zero loss on the audio side. Common use cases:

How It Works: FFmpeg.wasm

The tool runs FFmpeg compiled to WebAssembly (FFmpeg.wasm) directly in your browser. FFmpeg is the same open-source audio/video processing engine used by YouTube, VLC, HandBrake, and most professional media software. The WebAssembly build executes the full FFmpeg binary inside a browser tab — no server receives your file.

The conversion command used internally 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 CD standard (44.1 kHz), -ac 2 outputs stereo, and -b:a is the bitrate you choose.

Choosing the Right Bitrate

BitrateFile size (1 hr)Best forAudible vs 320 kbps
128 kbps~56 MBSpeech, podcasts, lectures, voice memosNoticeable on music; negligible on voice
192 kbps~84 MBMusic, general use, balanced quality/sizeRarely audible in blind tests
320 kbps~140 MBHigh-fidelity music archivingReference — no degradation

One important constraint: the output quality is capped by the source. If the original video contains 128 kbps audio, exporting at 320 kbps will not recover lost detail — it only increases file size. Match the output bitrate to the source quality when possible.

How to Convert MP4 to MP3

  1. Open the MP4 to MP3 Converter. No signup required.
  2. Drop an MP4 (or MOV, AVI, MKV, WebM) onto the drop zone, or click to browse. Files up to 500 MB are supported.
  3. Choose a bitrate. 192 kbps is the right choice for most music; 128 kbps for speech-only content; 320 kbps for archiving high-quality music.
  4. Click Convert to MP3. The first conversion loads the FFmpeg engine (~10 MB from a CDN), which takes 5–15 seconds. Subsequent conversions in the same session are fast.
  5. An audio player appears — preview the output, then click Download MP3 to save the file.

Audio Format Comparison

MP3 is the most universally compatible audio format, but it is not the only option. Understanding the alternatives helps you choose the right format for each use case:

FormatCompressionQuality at same bitrateCompatibilityBest for
MP3LossyGoodUniversalMusic libraries, podcasts, general audio
AACLossyBetter than MP3 at same bitrateExcellent (Apple ecosystem native)iPhone music, Apple Podcasts, streaming
OGG VorbisLossyBetter than MP3 at same bitrateGood (not Apple Music)Web audio, open-source projects
FLACLosslessPerfect — identical to sourceGood (most players)Music archiving, audiophile use
WAVNone (uncompressed)Perfect — identical to sourceUniversalAudio editing, professional workflows
OpusLossyBest of all lossy at low bitratesModerate (modern browsers/players)VoIP, speech at very low bitrates

For extracting audio from video for listening, MP3 at 192 kbps is the practical default: universally compatible, indistinguishable from lossless for most listeners, and much smaller than WAV or FLAC. Use FLAC if you plan to re-edit or re-encode the audio later (preserves quality through multiple processing steps).

Sample Rate and Channel Mode

The tool outputs at 44.1 kHz stereo by default, which is the correct setting for virtually all music and speech content. For reference:

Adding Metadata After Conversion

The converter extracts the raw audio stream without copying metadata (title, artist, album art) from the video file into the MP3 tags. After conversion, use one of these free tools to add metadata:

Advanced Use Cases

Meeting recordings for transcription

Zoom, Teams, and Google Meet recordings save as MP4. Converting to MP3 at 128 kbps reduces file size by 80–90% (voice-only content compresses extremely well) and makes the file easy to upload to transcription services. 128 kbps is sufficient for transcription accuracy — models are trained on compressed speech and are not sensitive to high-bitrate audio for transcription purposes.

Podcast production from video interviews

If you record podcast interviews on video (Riverside, Squadcast, Zoom), convert the MP4 to WAV first (not MP3) for editing — WAV is lossless and does not degrade through multiple edit-export cycles. Use your audio editor to clean up, then export the final podcast episode as MP3 at 128 kbps (for speech) or 192 kbps (for music-heavy episodes). The MP4-to-WAV workflow is possible with HandBrake or the dedicated FFmpeg CLI; the browser tool targets MP3 output specifically.

Converting large files on slower devices

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.

Privacy: No Server Uploads

The entire conversion runs in the browser using WebAssembly. The file never leaves your device — there is no server, no cloud storage, no data transfer. The FFmpeg engine is loaded from a CDN on first use, but your video is processed entirely locally. This is particularly important for confidential meetings, legal depositions, and sensitive business recordings that should not be uploaded to third-party services.

Convert MP4 to MP3 Free

Browser-based, no upload, no signup. Supports MP4, MOV, AVI, MKV, WebM up to 500 MB. Preview before downloading.

Open MP4 to MP3 Converter