Extract Audio from Video: The Free Video-to-MP3 Guide (2026)
The Video Is the Wasted Part
Here is a thought experiment. You have a 700 MB video file of a two-hour lecture, a podcast episode, a band rehearsal, a family interview. What you actually want from it is the sound — to listen on a commute, to drop into an edit, to archive as audio. In that moment, the video is mostly wasted space: 90% of the file is frames you will never watch again. Extracting the audio turns 700 MB into 60 MB of MP3, keeps every second of the content, and works entirely on your own machine with free tools.

“Extract audio from video” is one of those queries that never goes out of style, because the need is as old as video itself: people record things on cameras and phones, and the sound is often the part they actually want. It is also a genuinely different job from downloading — the video is already yours, there is no platform involved, and the tools are the same multimedia engines that power every converter on the internet. This guide covers every reliable way to do it in 2026: the one-line command that does the job perfectly, the free apps that put buttons on it, the online extractors that work in a browser, and the phone workflows. Plus the quality settings that separate a clean extraction from a muddy one.
Extract Responsibly: The Rule of the File
The responsible line here is simple and worth stating: extract audio from videos you own, you recorded, or you have rights to use. Your own footage, Creative Commons content, and material you are licensed to work with are all fine. Stripping audio from a video to bypass a license — pulling the soundtrack off a commercial film, for example — is exactly the kind of circumvention this guide does not support, and the tools below are not a workaround for it. If you are extracting from a downloaded platform video, the same download rules apply: your own content and permission-granted content only.
How Audio Extraction Works (Demux vs. Encode)
Thirty seconds of theory saves you a lot of confusion. A video file is a container holding two or more streams: video and audio. Extracting the audio means taking the audio stream out. There are two ways:
- Demuxing (stream copy): lifting the audio stream out of the container without touching a single byte. Instant, lossless, and the output keeps the original codec — typically M4A/AAC from an MP4, or OGG/Opus from a WebM. This is the fastest, highest-quality path, and it is what the command in Method 1 does by default.
- Encoding to MP3: re-compressing the audio into MP3, which shrinks it further and makes it playable everywhere. This is a real conversion — it takes a few seconds per minute of video — and the quality depends on the bitrate you choose (192–320 kbps for music, 128 kbps is fine for speech).
The good news: you do not usually have to choose one or the other. Most tools can demux to the original codec or encode to MP3, and the guide below shows both.
Method 1: The One-Line ffmpeg Command (Fastest, Free, Lossless)
ffmpeg, the free open-source multimedia tool from the official site, is the engine behind nearly every converter in existence, and it does audio extraction flawlessly. Install it once (Windows: winget install ffmpeg; macOS: brew install ffmpeg), open a terminal in the folder with your video, and run:
# Extract the audio exactly as it is (lossless demux, usually M4A)
ffmpeg -i input.mp4 -vn -c:a copy output.m4a
That is the whole trick: -vn drops the video, -c:a copy copies the audio stream without re-encoding. For an MP3 version, add an encode step:
# Extract and convert to MP3 at high quality
ffmpeg -i input.mp4 -vn -c:a libmp3lame -b:a 320k output.mp3
# For speech and podcasts, 128 kbps is plenty and half the size
ffmpeg -i input.mp4 -vn -c:a libmp3lame -b:a 128k output.mp3
And when the input is a WebM, MOV, or MKV, the same commands work — ffmpeg reads everything:
ffmpeg -i input.webm -vn -c:a copy output.m4a
Two notes. First, if the file’s audio is already a codec you want (AAC, Opus), the copy command is instant and perfect — use it. Second, for batch jobs — a whole folder of videos — a one-line loop handles them all, and our guide to converting video to MP4 shows the pattern adapted for containers.
One more ffmpeg skill worth having: cutting out just a segment while extracting. If you want one quote from an interview or one song from a live set, the -ss and -t flags slice the timeline during extraction:
# Extract 30 seconds starting at the 1:30 mark, losslessly
ffmpeg -ss 00:01:30 -t 00:00:30 -i input.mp4 -vn -c:a copy segment.m4a
The result is a small audio file containing exactly the part you needed, with no editing software required. The GUI tools in Method 2 offer the same cutting feature visually if you prefer dragging a timeline.
Method 2: Free Apps With Buttons
Not everyone wants a terminal, and the free graphical options are excellent. Audacity (from audacityteam.org) is the classic: File → Import → Audio, then File → Export → Export as MP3. It re-imports the audio through your system, so it works with almost any format, and it gives you editing power — trim, normalize, fade — before you export. VLC, which almost everyone has, includes a hidden converter: Media → Convert/Save → choose the file → pick an audio profile (MP3 or FLAC) → Start. It re-encodes, so it is slower than a copy, but it needs nothing new installed. Shutter Encoder is the power-user GUI: pick your file, choose “Extract Audio” or “Convert to MP3,” and it hands you clean output with full control over bitrate and format.
For the MP4-to-MP3 conversion side specifically, our video conversion guide covers the remux-versus-re-encode mindset in detail — the same principles apply whether you are moving video or just the sound.
Method 3: Online Extractors (Convenient, With a Privacy Caveat)
Browser-based extractors work the way you expect: upload or paste a path to the video, choose MP3, download. They are genuinely convenient for small files — a screen recording, a short clip — and need no installation. But there is a privacy rule that matters more here than anywhere else: the video is uploaded to the extractor’s server. For anything personal, private, or work-related, do not use an online service; the desktop tools above are free, offline, and keep the file entirely on your machine. For a short public clip or a file you would not mind anywhere, an online extractor is fine — apply the usual safety checks (HTTPS, clean domain, no install demands) and never upload a video containing sensitive information.
Method 4: Extracting Audio on Your Phone
On Android, file-manager apps with built-in media tools can extract audio directly, and several converter apps on the Play Store do the job — choose one with high ratings and no ad-loading nonsense. On iPhone and iPad, the file-manager pattern works again: open the video in Documents by Readdle (or a similar app), use its built-in converter or export the file to an audio editor, and save the MP3 to your camera roll or Files. For large videos, extracting on a computer and transferring the small audio file is faster and gentler on your battery — the phone route shines for quick, small clips.
Method 5: When the Audio Is Online, Not On Your Device
The flip side of the problem: the sound you want lives in a video that is not a file on your machine — it is on YouTube, TikTok, or another platform. That is a different job with different tools, and it is covered properly in our dedicated guides: YouTube to MP3 for the biggest platform and TikTok MP3 for short-form audio. The same honesty rule applies there as here: extract only from content you are allowed to keep.
Quality Settings That Matter
The single biggest quality mistake is extracting to MP3 at a low bitrate from an already-compressed source. Good defaults:
- Speech, podcasts, lectures: 128 kbps MP3 is indistinguishable from the source and tiny.
- Music: 256–320 kbps MP3, or keep the original AAC via demux for zero loss.
- Archival or editing: demux to the original codec (M4A/FLAC/OGG) — no encode at all, bit-perfect.
- When in doubt, keep the original and encode a copy. You can always make a smaller MP3 later; you can never recover quality you threw away.
If file size matters more than convenience — say, archiving hours of recordings — the compression principles in our video compression guide apply to audio too: quality-based settings beat fixed bitrates every time.
Troubleshooting: When Extraction Goes Wrong
The output is silent. The audio stream may be in a codec your player does not support, or you copied a stream that was already muted in the source. Re-extract with an encode (-c:a libmp3lame) instead of a copy.
“Unknown encoder ‘libmp3lame’.” Your ffmpeg build lacks MP3 support. Install a full build (winget/Homebrew versions include it) or use the copy method to M4A instead.
The extracted file is huge. You copied a lossless or multi-channel stream. Encode to MP3 at an appropriate bitrate, or keep the copy only if you genuinely need archival quality.
Only part of the audio came out. The source may have multiple audio tracks (a movie with directors’ commentary, a multilingual file). Use -map 0:a:0 to pick the first audio track explicitly, or list tracks with ffprobe and choose.
VLC’s Convert produced no file. VLC sometimes needs the exact profile selected before picking the file. Re-do the steps with “Audio – MP3” chosen first, and make sure the output filename has the .mp3 extension.
Frequently Asked Questions
Is extracting audio from video legal? From videos you own, recorded, or are licensed to use — yes. Stripping audio from commercial content to bypass licensing is not, and no tool in this guide is a workaround for that.
What is the best format for extracted audio? For music, keep the original AAC (M4A) via demux or use 320 kbps MP3. For speech, 128 kbps MP3. For archival, demux to the original codec losslessly.
Can I extract audio without losing quality? Yes — demuxing (-c:a copy) is lossless; the audio bytes are identical. Only the encode-to-MP3 step trades quality for size.
Does this work on MKV, WebM, and MOV? Yes. ffmpeg reads every common container, and the GUI tools in Method 2 handle them too.
Can I extract audio from an online video? If you mean a platform video you do not have as a file, that is the downloader/YouTube-to-MP3 job — see Method 5 for the right guides. Local extraction assumes the video is already on your device.
Can I extract audio from a video playing on a streaming site? No legitimate tool does this, and it is the same licensing circumvention this guide does not support. If the video is yours or licensed, download it properly first, then extract locally — never try to strip the audio from a live stream you do not own.
Why does my extracted MP3 sound worse than the video? Either the bitrate was too low for the content (music needs 256+ kbps) or the source audio was already compressed. Extract from the best source you have and choose the bitrate to match the content.
Which Method Should You Use?
One file, right now: the ffmpeg one-liner — seconds, free, and lossless if you use the copy command. Prefer buttons: Audacity or VLC, both free and installed-or-downloadable in minutes. A phone clip: the file-manager app on your device. An online video: see the platform-specific guides in Method 5. And for anything private: never upload it to an online extractor — the desktop tools keep your files on your machine, which is exactly where they belong.
Every video is a soundtrack you have not saved yet. Extract the audio properly — lossless when you can, smart bitrates when you must — and the content you actually want becomes a file you can take anywhere, without dragging the picture along.