Skip to content
batonbox

Guides

How to extract audio from a video without re-encoding

Pull the soundtrack out of an MP4, MOV, WebM or MKV in seconds by copying the audio track, and know when converting to MP3 is actually worth it.

Updated 2026-09-19

The audio inside a video file is already a finished, compressed stream — usually AAC in an MP4 or MOV, Opus in a WebM. Extracting it can therefore be a copy operation: take the audio track, put it in an audio container, done. No decoding, no quality loss, and it finishes as fast as the file can be read.

Most tools instead decode and re-encode to MP3 because that is what users type into search boxes. Here is how to decide which you want.

Container versus codec

A container (MP4, MOV, MKV, WebM) is a box holding one or more streams. A codec (AAC, Opus, MP3, H.264) is how each stream is compressed. Extraction only needs to move the audio stream into an audio-only box: AAC into an M4A file, Opus into an Ogg or WebM audio file. The bytes of the audio are untouched.

When copying is the right answer

If you want the best possible quality, want it now, or the video is large, copy. A two-hour lecture recording extracts in the time it takes to read the file from disk. An M4A plays on every phone, browser and desktop player made in the last decade.

When to convert to MP3 instead

Convert when the destination insists on MP3 — some podcast hosts, older car stereos, or a client who asked for it by name. Conversion decodes the AAC and encodes MP3, which is a second lossy step; choose 192 kbps or higher so the loss stays inaudible. Expect it to take a few times longer than a copy.

Common problems

No audio track: screen recordings made without a microphone often have none. Check the file's track list before blaming the tool.

Multiple audio tracks: some MKVs carry several languages. Pick the one you want explicitly.

AVI, WMV and FLV: these older containers are not readable by browser-based extractors. Convert them to MP4 first with a desktop tool, or use a server-based converter.

Step by step

  1. 1

    Inspect the file

    Confirm there is an audio track and note its codec. AAC or Opus means a lossless copy is available.

  2. 2

    Choose copy or convert

    Copy to M4A/Ogg for quality and speed; convert to MP3 only if the destination requires it.

  3. 3

    Trim if needed

    If you only want part of the audio, cut it in the extracted file rather than re-processing the whole video.

  4. 4

    Check the result

    Play the start, a point in the middle and the end. Duration should match the video.

Questions

Does extracting audio reduce quality?
Not if the tool copies the track. It only loses quality if it converts to another lossy format such as MP3.
What format do I get from an MP4?
Usually M4A, which is AAC audio in an MP4 container. Rename is not enough — the video stream must actually be removed.
Can I do this on my phone?
Yes, in a modern mobile browser, provided the tool processes locally and the file is not enormous. Uploading a multi-gigabyte video over mobile data is the slow part, not the extraction.