Initializing... drag & drop files here
Supports: AV1
AV1 is a video codec, so this tool's job is to pull the audio track out of an AV1 file and decode it to uncompressed WAV (PCM). The catch worth knowing up front: a bare AV1 video stream has no sound of its own — you only get audio out if your file actually carries an audio track. The walk-through and error notes below explain exactly when this works and when it produces a silent file.
Whether you get audio depends entirely on how the AV1 was packaged, because the AV1 specification itself defines only video — audio always rides in the container alongside it. The two common cases:
.mkv, .webm, or .mp4, you have audio..av1, .ivf, .obu): This is video only. The IVF container holds exactly one elementary stream by design, and a raw .av1/.obu dump is nothing but coded video frames. There is no audio inside, so a WAV made from it would be empty or silent — nothing to extract. If you have a bare stream like this, the audio (if it ever existed) lives in a separate file.If your goal is the soundtrack of a video that happens to use AV1, make sure you're uploading the full container file, not a demuxed video-only stream.
.av1 or .ivf stream; re-export or download the full container (MKV/WebM/MP4) that includes the audio.If your AV1 file is a true elementary stream with no companion audio, no tool can manufacture sound that was never encoded — the fix is to find the original container or the separate audio file. If you actually want the whole video in a more compatible package rather than just its audio, transcode it with AV1 to MP4 instead, or use the matching MKV to WAV and MP4 to WAV tools when your file already sits in one of those containers.
Only if the AV1 video is muxed inside a container (MKV, WebM, or MP4) that also holds an audio track — usually Opus or AAC. AV1 itself is a video-only codec from the Alliance for Open Media; a raw .av1, .ivf, or .obu elementary stream carries no audio at all, so it cannot produce a WAV with sound.
Because the source you uploaded had no audio track to decode — almost always a raw AV1 video stream. The audio, if it existed, was in a separate file or a different container. Re-upload the complete container file (the .mkv/.webm/.mp4) that bundles both video and audio.
By default it produces standard 16-bit PCM. The Audio Codec dropdown also offers PCM 24-bit and 32-bit little-endian for editing headroom, plus PCM A-law and mu-law for compact telephony audio. WAV is RIFF-based and almost always uncompressed linear PCM.
The decode from the source codec (typically Opus or AAC) to PCM is lossless — WAV stores the decoded samples exactly. But the original encode to Opus/AAC was lossy, so WAV preserves that audio faithfully without restoring detail the lossy codec already discarded. WAV is a clean, edit-ready master, not a quality upgrade over the source.
WAV is uncompressed. In our testing, one minute of 44.1 kHz 16-bit stereo audio decodes to about 10 MB of WAV regardless of how small the compressed source was, because PCM stores every sample at full resolution. That size is the price of zero further compression and universal editor support.
Yes. Audio Sample Rate and Audio Channel both default to Original (copying the source), but you can force 44.1 kHz, 48 kHz, or 96 kHz and choose Mono or Stereo. Downmixing a stereo voice recording to mono roughly halves the WAV size with no audible loss for speech.