How to Extract Audio (MP3) From a Video
You recorded an interview, a lecture, a song cover, or a podcast on camera — and now you just want the sound. Maybe you need an MP3 for a playlist, a WAV to drop into an audio editor, or a lightweight file you can email instead of a 400 MB video. Whatever the reason, extracting the audio track from a video is one of the most common conversions people search for, and it is also one of the most over-complicated by sketchy websites that ask you to upload, sign up, or install a desktop app loaded with toolbars.
Here is the good news: pulling audio out of a video is fast, lossless when done right, and completely doable in your browser without uploading anything. A video file like an MP4 or MOV is really just a container — a box holding a separate video stream and a separate audio stream side by side. Extracting audio means opening that box, copying the audio stream out, and saving it as a standalone MP3 or WAV. The picture is simply discarded.
This guide walks through exactly how to do that for free with no upload using FileChange, and it also covers the honest tradeoffs of the alternatives — VLC, desktop FFmpeg, online uploaders, and phone apps — so you can pick the right tool for your situation.
Why a video already contains a separate audio track
When your phone or camera records a clip, it does not blend picture and sound into a single inseparable signal. It writes two parallel streams into one container file: a video stream (usually H.264 or HEVC) and an audio stream (usually AAC). An MP4, MOV, MKV, or WebM file is just the wrapper that keeps those two streams synchronized.
That architecture is why extracting audio is genuinely simple and why it can be near-instant and lossless. If your video's audio is already AAC and you save it as an M4A/AAC file, the data can in principle be copied straight out with no re-encoding at all. When you ask for MP3 or WAV instead — the two formats most people actually want — the audio does have to be re-encoded into that target codec, but you only pay the cost of processing an audio stream, never the much heavier video stream.
Understanding this also explains a common surprise: the output file is tiny compared to the original. A 500 MB, ten-minute 4K video might yield a 9–10 MB MP3, because all the pixels — the overwhelming majority of the file — are simply thrown away. You are keeping only the soundtrack.
Extract audio free in your browser with FileChange (no upload)
FileChange does this conversion entirely on your own device. It loads FFmpeg compiled to WebAssembly (FFmpeg.wasm) directly into the browser tab, so the demux-and-encode work that a desktop tool would do happens locally in JavaScript. Your video is never sent to a server — there is no upload step, no queue, no account, and no watermark. It is free with no hard file-size cap (you will see a soft warning around 200 MB, but that is advisory, not a wall).
To get an MP3 out of an MP4, open the mp4-to-mp3 converter, drag your video onto the drop zone, and let it process. The page reads the container, isolates the audio stream, encodes it to MP3, and hands you a download — all without the file leaving your machine. If your source is an iPhone recording, use the mov-to-mp3 converter instead; for Matroska files from a screen recorder or download, use mkv-to-mp3. Each one targets the same job for a different container.
If you would rather keep the audio uncompressed — for editing, mastering, transcription, or archival — choose mp4-to-wav. WAV is lossless PCM, so you avoid stacking a second round of lossy compression on top of the original AAC. The file is much larger than an MP3 (roughly ten times the size for the same length), but nothing is thrown away beyond what the camera already encoded. As a rule of thumb: pick MP3 for sharing and playback, pick WAV for any further audio work.
Because the heavy lifting runs in your tab, the very first conversion in a session takes a moment longer while FFmpeg.wasm initializes. After that it is quick, and you can run several clips back to back. There is no batch-count limit, so you can drop in a whole folder of recordings one after another.
Free desktop method: VLC Media Player
VLC is free, open-source, runs on Windows, macOS, and Linux, and almost everyone already has it. It can convert a video to an audio-only file through its built-in conversion dialog. On Windows, go to Media → Convert / Save, add your video, click Convert / Save, then choose an audio profile such as Audio – MP3. Set a destination filename ending in .mp3 and start. VLC will play through the conversion (sometimes in real time) and write the audio file.
The upside is that VLC handles obscure containers and codecs gracefully and keeps everything offline. The downsides are real, though: the Convert/Save dialog is notoriously unintuitive, the audio-only profiles sometimes need editing before they produce a usable file, and progress feedback is poor. It is a fine choice if VLC is already your daily player, but many people find a focused converter faster for a one-off job.
Power-user method: FFmpeg on the command line
Everything the browser version of FileChange does is built on FFmpeg, and if you are comfortable in a terminal you can run the desktop original directly. To extract audio to MP3 from an MP4, the command is: ffmpeg -i input.mp4 -vn -acodec libmp3lame -q:a 2 output.mp3. The -vn flag drops the video, libmp3lame encodes MP3, and -q:a 2 sets a high-quality variable bitrate.
If your video's audio is already AAC and you want a true lossless copy with zero re-encoding, use ffmpeg -i input.mp4 -vn -acodec copy output.m4a — the -acodec copy stream-copies the audio out untouched and finishes almost instantly. For uncompressed WAV, swap in -acodec pcm_s16le output.wav.
This is the most powerful and flexible option, and it is completely free, but it requires installing FFmpeg and being willing to read documentation. For most people the in-browser route gets the same engine and the same result without the setup — which is the whole point of FileChange running FFmpeg.wasm locally.
Online uploaders and phone apps: the honest tradeoffs
A search for this task surfaces dozens of online converters that ask you to upload your video to their servers. They work, and some are genuinely convenient, but they come with three costs worth weighing. First, privacy: your footage — which might be a private interview, a meeting, or personal video — is transmitted to and processed on someone else's machine. Second, speed: uploading a multi-hundred-megabyte video over a typical home connection can take far longer than the conversion itself. Third, limits: many free upload sites cap file size, watermark the output, throttle you, or push a paid tier. FileChange avoids all three because the file never leaves your device.
On a phone, both platforms have decent options. On iPhone, you can use the Shortcuts app to build a one-tap 'Encode Media' action set to audio-only, which extracts the soundtrack without any third-party app. On Android, several free apps (and VLC's mobile build) can do the same. These are great for clips already on your phone; for anything on a laptop, a browser-based converter is usually the least-friction path since it needs no install.
Getting the best quality out of your extracted audio
Remember that you can never add quality that was not captured. If a phone recorded the original in mono at a low bitrate, extracting to a 320 kbps MP3 will not make it sound better — it just preserves what is there in a bigger file. Match the output to the source: for spoken-word content, a moderate MP3 bitrate is plenty and keeps files small; for music you care about, prefer WAV or a high-quality MP3 setting.
Avoid re-compressing more than once. If you extract to MP3, then later edit and export to MP3 again, you stack two rounds of lossy compression and audible artifacts can creep in. The cleaner workflow for any editing is to extract to WAV first, do your edits, and only compress to MP3 as the very last step before sharing.
Finally, watch your levels. Camera audio is often recorded quietly to avoid clipping, so your extracted track may sound low. That is normal — a quick normalize pass in any free audio editor (Audacity is the classic) fixes it without touching the underlying recording quality.
Frequently Asked Questions
Does extracting audio reduce the sound quality?
It does not have to. If you extract to WAV, the audio is kept as uncompressed PCM with no additional quality loss beyond what the camera originally captured. If you extract to MP3, the audio is re-encoded into a lossy format, so there is a small theoretical quality cost — but at a reasonable bitrate it is inaudible for almost all content. For zero loss with no re-encoding at all, copy the original AAC stream into an M4A file instead.
Is it really free, and do I have to upload my video?
Yes, it is free with no signup, no watermark, and no paid tier, and no — you do not upload anything. FileChange runs FFmpeg compiled to WebAssembly directly in your browser, so the video is read and converted on your own device. The file never touches a server, which is faster for large videos and keeps private footage private.
Why is my MP3 so much smaller than the original video?
Because nearly all of a video file is the picture, not the sound. When you extract audio you discard the entire video stream and keep only the soundtrack. A multi-hundred-megabyte clip routinely produces an MP3 of only a few megabytes — that is expected, not a sign that anything went wrong.
Can I extract audio from MOV, MKV, and WebM too, not just MP4?
Yes. The process is the same regardless of container because they all wrap a separate audio stream. Use the MP4 to MP3, MOV to MP3, or MKV to MP3 converter to match your source file. WebM and AVI work on the same principle if you have those formats.
Should I choose MP3 or WAV?
Choose MP3 when the goal is sharing, listening, or saving space — it is small and plays everywhere. Choose WAV when you plan to edit, transcribe, master, or archive the audio, because it is lossless and avoids stacking compression. A good workflow is to extract to WAV, edit, then export to MP3 as the final step.
Is there a file-size or length limit?
There is no hard cap. You may see a soft advisory warning on very large files (around 200 MB), but that is just a heads-up that in-browser processing will take longer — not a block. Longer videos take more time to process since all the work happens locally on your device.
Related converters & guides