The team behind OnlineTools4Free — building free, private browser tools.
Published Jan 21, 2026 · 7 min read · Reviewed by OnlineTools4Free
How to Extract Audio from Video (MP4 to MP3) Free
Why Extract Audio from Video?
There are plenty of legitimate reasons to pull an audio track out of a video file. Podcasters extract audio from video interviews to publish audio-only episodes. Musicians isolate tracks from live performance recordings. Students rip audio from lecture videos to listen on the go. Content creators repurpose video content into audio snippets for social media.
The process is straightforward because video files like MP4 are actually containers — they hold separate video and audio streams bundled together. Extracting the audio is not "converting" in the traditional sense; it is separating an existing stream from the container.
This distinction matters for quality. If you extract without re-encoding, you get the exact audio that was in the video, bit for bit. If you convert to a different audio format (say, AAC to MP3), there is a re-encoding step that can introduce minor quality loss.
Extract Audio Online (No Software Needed)
The fastest method is to use a browser-based tool. Our Video Converter handles audio extraction directly in your browser — no uploads to remote servers, no software to install.
- Open the Video Converter tool.
- Drop your video file onto the upload area.
- Select MP3 (or your preferred audio format) as the output.
- Click Convert.
- Download the extracted audio file.
This works for MP4, MOV, AVI, MKV, WebM, and most other common video formats. The processing happens locally in your browser using WebAssembly, so your files stay private.
Choosing the Right Audio Format
When extracting audio, you need to decide on an output format. Here are your main options:
MP3
The universal standard. Every device, app, and platform supports MP3. At 192-256 kbps, quality is excellent for music and speech. At 128 kbps, it is fine for spoken word (podcasts, lectures, audiobooks). File sizes are small and predictable.
AAC
Apple's preferred format, also widely supported. AAC delivers better quality than MP3 at the same bitrate. If your video's audio is already in AAC (common in MP4 files), extracting without re-encoding preserves perfect quality.
WAV
Uncompressed audio. WAV files are large (about 10 MB per minute of stereo audio) but contain no compression artifacts. Use WAV when you plan to edit the audio further — mixing, mastering, or applying effects. You can always compress to MP3 later.
OGG (Vorbis)
An open-source alternative to MP3 with good quality at lower bitrates. Well supported on the web and in many apps, though less universally compatible than MP3 on hardware devices.
Rule of thumb: Use MP3 at 192 kbps unless you have a specific reason to choose something else. It is the format that will play anywhere without issues.
Extract Audio Using FFmpeg (Command Line)
For power users and batch processing, FFmpeg is the gold standard. It is free, open-source, and handles virtually any media format.
Extract and convert to MP3
ffmpeg -i input.mp4 -q:a 2 -map a output.mp3
The -q:a 2 flag sets quality (0 is best, 9 is worst; 2 is roughly 192 kbps). The -map a flag tells FFmpeg to only process audio streams.
Extract without re-encoding (fastest)
ffmpeg -i input.mp4 -vn -acodec copy output.aac
This copies the audio stream directly without any re-encoding. It is almost instant and preserves perfect quality. The output format must match the source audio codec — for most MP4 files, that means AAC.
Batch extract from multiple files
for f in *.mp4; do ffmpeg -i "$f" -q:a 2 -map a "${f%.mp4}.mp3"; done
This loops through every MP4 file in the current directory and creates a corresponding MP3.
Tips for Best Audio Quality
A few things to keep in mind when extracting audio from video:
- Source quality is the ceiling. If your video was recorded with a phone in a noisy room, no amount of extraction wizardry will make it sound professional. The audio track in the video is exactly what you get.
- Avoid double compression. If the source audio is MP3 at 128 kbps and you re-encode it to MP3 at 256 kbps, you do not gain quality — you just get a larger file with the same artifacts. Either extract without re-encoding or match the source quality.
- Check for multiple audio tracks. Some videos (especially MKV files) contain multiple audio tracks — different languages, commentary tracks, or isolated music. FFmpeg can list all tracks with
ffmpeg -i input.mkv, and you can select a specific track with-map 0:a:1(for the second audio track). - Trim during extraction. If you only need a portion of the audio, trim during the extraction step rather than extracting the full file and trimming later. In FFmpeg:
ffmpeg -i input.mp4 -ss 00:01:30 -to 00:04:00 -q:a 2 output.mp3
Common Use Cases and Workflows
Here are the most frequent scenarios and the best approach for each:
- Podcast from video interview: Extract to MP3 at 128 kbps (mono) or 192 kbps (stereo). Speech does not benefit from higher bitrates. Consider normalizing the audio levels afterward so all episodes sound consistent.
- Music from concert video: Extract to WAV first for the highest-quality starting point. Then edit, equalize, and master before exporting to your final format.
- Lecture recording for commute listening: MP3 at 96-128 kbps is plenty for a single speaker. Lower bitrates keep files small, which matters on phones with limited storage.
- Sound effects from video clips: Extract to WAV and trim precisely. Sound effects need clean start and end points with no extra silence.
- Background music identification: Extract a short MP3 clip and use a music recognition service like Shazam or SoundHound to identify the track.
Whatever your use case, the process starts the same way: get the audio out of the video container. Our Video Converter makes that first step quick and painless, and you can use our other tools for any further processing you need.
Video to MP4 Converter
Convert video files to MP4 format directly in your browser.
OnlineTools4Free Team
The OnlineTools4Free Team
We are a small team of developers and designers building free, privacy-first browser tools. Every tool on this platform runs entirely in your browser — your files never leave your device.
