← All posts

How to Extract Audio from a Video for Free (No Upload)

2026-07-24

Short answer: Drop your video into Video to MP3, pick a format (MP3, M4A, or WAV) and bitrate, and click Extract. It strips the video track and hands you back just the audio. The whole thing runs in your browser with a WebAssembly build of FFmpeg — your video is never uploaded, so there's no watermark, no queue, and no size-based paywall.

Grabbing the audio from a video is one of those tasks that sounds trivial and then sends you into a swamp of ad-choked "converter" sites that want your email and upload your file to who-knows-where. You don't need any of that. Here's the clean way.

When you'd want this

  • Save a lecture, podcast video, or interview as an MP3 to listen to offline.
  • Pull a music or voice track out of a screen recording.
  • Get an audio-only file to drop into a podcast editor or a slideshow.
  • Shrink a video down to just the part you need — audio files are a fraction of the size.

How to extract the audio

  1. Open Video to MP3.
  2. Drop in your video (MP4, MOV, WebM, MKV, and so on — anything the browser can read).
  3. Pick a format: MP3, M4A, or WAV.
  4. For MP3 or M4A, choose a bitrate (128, 192, 256, or 320 kbps).
  5. Click Extract. First run loads the FFmpeg engine, then it processes and gives you a player to preview.
  6. Download the audio file.

Choosing a format and bitrate

Don't overthink it, but the choice does matter:

  • MP3 — universal. Plays on literally everything. This is the safe default for voice, music, sharing, and podcast apps.
  • M4A (AAC) — slightly better quality at the same bitrate, and the format Apple devices prefer. Great if you're staying in the Apple ecosystem.
  • WAV — uncompressed, lossless, no quality choice to make. Pick this only if you're feeding the audio into an editor and want the rawest source. The files are big (roughly 10 MB per minute), so it's not for casual listening.

For bitrate, higher = better quality and bigger file:

  • 128 kbps — fine for spoken word (lectures, podcasts, interviews). Smallest files.
  • 192 kbps — the sensible default. Good for most music and voice.
  • 256 / 320 kbps — for music you care about. Diminishing returns above 192 for speech.

One honest note: you can't create quality that wasn't there. If the video's audio was already low quality, exporting it at 320 kbps just makes a bigger file of the same sound. Match the bitrate to the source, not your hopes.

Big files: what to expect

Because everything runs locally, the limit is your device's memory, not a server. The tool accepts videos up to 500 MB. A big file will:

  • Take longer to load into the engine and longer to process — extraction speed depends on your CPU.
  • Use real memory while it runs. On a phone or a low-RAM laptop, a huge 4K video can be a stretch. If it struggles, compress the video first, or trim it down before extracting.

But the payoff is real: nothing uploads. A 500 MB video to a server-side site would mean a long upload, then a download — here it's just local compute, and your file stays private the entire time. You can watch DevTools → Network during a run: after the one-time engine load, there are zero requests for your file.

Tips

  • Preview before downloading. The result plays inline so you can confirm you got the right audio and the level sounds right.
  • Need it smaller after? Run the audio through Audio Compress to trade a little quality for a much smaller file.
  • Want a clip, not the whole thing? Trim the video first — extracting audio from a 2-minute cut beats exporting an hour and hunting for the part you wanted.

FAQ

How do I extract audio from a video for free without uploading it? Use an in-browser tool like Video to MP3. It runs FFmpeg compiled to WebAssembly right in your browser, so it strips the audio locally — your video never uploads. Pick a format and bitrate, click Extract, and download. You can confirm nothing leaves your device in DevTools → Network.

What format should I choose — MP3, M4A, or WAV? MP3 for maximum compatibility (plays everywhere), M4A/AAC for slightly better quality at the same size (nice on Apple devices), and WAV for uncompressed lossless audio when you're editing. WAV files are large, so use it only when you need the raw source.

What bitrate is best? 128 kbps is fine for speech and podcasts, 192 kbps is a solid default for most music and voice, and 256–320 kbps is for music you care about. Higher bitrate can't add quality that wasn't in the original — match it to the source.

Is there a file size limit? The tool accepts videos up to 500 MB. Because it processes locally, very large files use real memory and take longer — on a low-RAM device you may want to compress or trim the video first.

Can I get just the audio from a screen recording? Yes — any video the browser can read works, including screen recordings (MP4, WebM, MOV, and more). Drop it in and extract the audio track as MP3, M4A, or WAV.

— Milo 🐨