Take the audio out of a video

Drop a video here

or click to choose — MP4, M4V, MOV and M4A can be copied without re-encoding

Most tools that save the sound from a video re-encode it: they decode the audio and compress it again, which throws away a second helping of quality from something that was already lossy. This one copies the audio stream out of the container untouched — the same bytes the video was carrying, with only the framing a standalone file needs. When copying is not possible the tool says so and offers lossless WAV instead, rather than quietly converting behind your back.

How to save the audio from a video

  1. Drop an MP4, M4V, MOV or M4A into the box above.
  2. Read the Audio track in this file panel. It tells you the codec, the sample rate, the channel count and how many audio frames the track holds — before anything is done to it.
  3. Leave Copy without re-encoding selected unless you need uncompressed audio, then press Extract audio.
  4. Play it back on the page to check, then download.

Why copying beats converting

The audio inside a video is not raw sound. It is already a finished, compressed stream, almost always AAC, and the compression it went through was lossy: detail was discarded when the video was made and it is not coming back.

A converter takes that stream, decodes it back to samples, and compresses it again into MP3 or AAC. The second pass has no idea which detail the first pass already removed, so it removes more of what is left. You end up with a file that is smaller in quality than the audio the video was carrying, for no reason other than that the tool did not know how to simply copy it.

Copying skips both steps. The compressed frames are lifted out of the container exactly as they are, and the only thing added is the small header each frame needs so that a player can find it in a standalone file. That is why this tool prints the numbers after every run: how many bytes of audio came out, how many bytes of framing were added, and how many frames there were. Divide the second by the third and you get seven — seven bytes per frame, which is the entire cost of the operation.

RouteWhat happens to the audioQualitySize
Copy (this tool's default)Frames moved out of the container, headers addedIdentical to the video's audioSame as the audio inside the video
WAVDecoded to raw samples, written uncompressedNo further lossRoughly 10 MB per minute, stereo
MP3 conversion (what most tools do)Decoded, then compressed againA second round of lossSimilar to the original, sometimes larger

Which one should you pick?

  • Listening, archiving, sending to someone: copy. It is the same audio the video had, at the same size, and it takes a moment because nothing is decoded.
  • Editing, transcribing, running through analysis software: WAV. Editors want uncompressed samples, and starting from WAV means any later conversion happens once, from lossless material.
  • You were told to supply an MP3: take the WAV and convert that. Going MP4 to MP3 directly is two lossy passes; WAV to MP3 is one.

Why the file is .aac and not .mp3

Because that is honestly what came out. The audio in the video was AAC, so a copy of it is AAC, and calling it something else would mean converting it — the exact thing this tool exists to avoid. VLC, foobar2000, Winamp, most Android players, and every audio editor worth the name open a .aac file without comment.

A few consumer players are fussier about extensions than about contents, and would rather see .m4a or .mp3 even for audio they can decode perfectly well. If you are stuck with one of those, the WAV route sidesteps the problem entirely.

What cannot be copied

Containers outside the MP4 family — WebM, MKV — and codecs other than AAC, such as Opus or Vorbis, cannot be lifted out here. The tool does not pretend otherwise: it tells you what it found and why the copy route is unavailable, and offers WAV, which works because the browser can decode those formats even when this tool cannot repackage them.

Size, speed and limits

There is no upload and no cap. Copying is close to instant on any length of recording, because no audio is decoded at all. WAV takes longer and needs more memory, since the entire track has to be turned into raw samples before it can be written — and the result can be large enough to run into upload limits somewhere else, which is its own small nightmare.

If you wanted the pictures too

Video to frames exports the frames as PNG or JPG and shows you the frame count so you can see nothing was duplicated, and video to GIF makes a short animation from a stretch of the clip that can be fitted to a size limit.

Frequently asked questions

How do I extract the audio from a video?

Drop an MP4, M4V or MOV into the box. The tool reads the container, tells you what the audio track actually is - codec, sample rate, channels - and offers the ways it can be saved. Choose Copy without re-encoding for the original bytes, or WAV if you need uncompressed audio for editing. Nothing is uploaded and there is no size limit.

What does "without re-encoding" actually mean?

The audio inside an MP4 is already a finished, compressed stream - usually AAC. A converter decodes that stream back to raw sound and compresses it again into MP3 or AAC, which loses a little more each time. Copying skips both steps: the compressed frames are lifted out of the container as they are and given the small header a standalone file needs. The audio data is byte for byte what was in the video. The page shows you the numbers - the size of the copied frames and the size of the headers added - so the claim is checkable.

What file do I get, and will it play?

A .aac file containing the same AAC audio the video had, in ADTS framing. VLC, foobar2000, Winamp, most Android players and any editor worth using open it directly. Some consumer players - the Windows Photos app, older iTunes - would rather see a .m4a or .mp3 extension than .aac, even for identical audio. If you need one of those specifically, choose WAV here and convert it once, or use a player that is less fussy.

Why is WAV so much bigger than the video's audio?

Because WAV is uncompressed. A three minute AAC track might be 3 MB; the same audio as 16-bit stereo WAV at 48 kHz is around 30 MB. That is the price of having no compression at all, and it is the right choice when the audio is going into an editor. It is the wrong choice for sending to someone.

Can I get an MP3?

Not from this tool, deliberately. Making an MP3 from an MP4 means decoding AAC and re-encoding to MP3 - a second lossy pass over audio that was already lossy, for a format that is not better, just older. If your target genuinely needs MP3, start from the WAV here so at least the conversion happens once from lossless material rather than twice from compressed.

Which files work?

MP4, M4V, MOV and M4A with AAC audio can be copied without re-encoding, which covers phone recordings, screen captures and almost everything downloaded from the web. Other containers such as WebM and MKV, and other codecs such as Opus or Vorbis, cannot be copied here; for those the WAV route still works, since it decodes with the browser's own audio engine.

Is there a length or size limit?

No limit is imposed. The file stays on your device, so there is nothing to upload and nothing to cap. Copying is fast even on long recordings because no decoding happens at all - the bytes are simply moved. WAV is slower and needs more memory, because the whole track has to be decoded into raw samples first.

Does the video get uploaded anywhere?

No. The container is parsed in your browser and the audio is assembled there too. Go offline before you drop the file in and the tool works exactly the same - the fastest way to check this claim on any site that makes it.

What if I want the pictures instead?

Video to frames exports the frames as PNG or JPG and tells you how many there were, and video to GIF turns a stretch of the clip into an animation that can be made to fit a size limit.