Extract Audio from WTV to AC3 — Free Online Tool

Extract audio from Windows Media Center TV recordings (.wtv) and convert it to AC3 Dolby Digital format (.ac3). This tool strips the video stream entirely and re-encodes the AAC or MP3 audio track from your WTV recording into AC3, making it compatible with DVD authoring tools, AV receivers, and Blu-ray workflows that expect Dolby Digital audio.

FFmpeg Command

Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg

Free — no uploads, no signups. Your files never leave your browser.

Estimated output:

Conversion Complete!

Download

How It Works

WTV files recorded by Windows Vista/7/10 Media Center typically contain H.264 video and AAC or MP3 audio, along with broadcast metadata like program titles and episode information. During this conversion, FFmpeg discards the video stream entirely using the -vn flag and re-encodes only the audio track from its source codec (usually AAC) into AC3 (Dolby Digital) at 192k bitrate. This is a full audio transcode — not a stream copy — because AAC and AC3 are entirely different codecs with different encoding algorithms. The result is a standalone .ac3 file suitable for use in home theater authoring, AV receiver playback, or as an audio track in DVD/Blu-ray projects. Broadcast metadata embedded in the WTV container (such as channel, show title, and airtime) is not carried over into the raw .ac3 output, as the AC3 format does not support container-level metadata.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg program, which handles all media demuxing, decoding, encoding, and muxing. In the browser version, this runs via FFmpeg.wasm compiled to WebAssembly — no installation required.
-i input.wtv Specifies the input Windows Television file. FFmpeg reads the WTV container, detecting the embedded H.264 video stream and AAC (or MP3) audio stream recorded by Windows Media Center, along with any broadcast metadata.
-vn Disables video output entirely, telling FFmpeg to ignore the H.264 (or MPEG-2) video stream in the WTV file. Since the goal is audio-only extraction, this prevents any video processing overhead and ensures the output contains only the audio track.
-c:a ac3 Selects the AC3 (Dolby Digital) encoder for the audio output stream. This re-encodes the source AAC audio from the WTV recording into the AC3 codec, which is required for DVD authoring, AV receivers, and Blu-ray audio tracks.
-b:a 192k Sets the AC3 audio output bitrate to 192 kilobits per second, which is the standard bitrate for stereo Dolby Digital audio in broadcast and DVD contexts. For 5.1 surround content extracted from HD recordings, increasing this to 384k or 448k is recommended.
output.ac3 Specifies the output filename with the .ac3 extension, producing a raw Dolby Digital elementary stream file. This format is directly importable into DVD authoring applications and playable by AV receivers and media players that support AC3 audio.

Common Use Cases

  • Extracting the Dolby Digital audio track from a recorded live sports broadcast for use as a standalone audio file in a video editing project
  • Preparing audio from a Windows Media Center TV recording for import into DVD authoring software like DVDStyler or Nero, which require AC3-formatted audio tracks
  • Archiving the audio commentary or dialogue from a recorded TV episode in Dolby Digital format for long-term storage alongside a separately encoded video file
  • Converting a WTV-recorded concert or music performance to AC3 so it can be played back through a home theater AV receiver or surround sound system
  • Extracting audio from a WTV recording to use as the audio track in a Blu-ray disc project, where AC3 is one of the mandatory supported audio formats
  • Stripping and re-encoding audio from a Windows Media Center recording to AC3 to test surround sound channel mapping before a full disc authoring workflow

Frequently Asked Questions

This depends on the original broadcast. WTV files from digital cable or over-the-air broadcasts may have been recorded with a stereo or 5.1 surround AAC audio stream. FFmpeg's AC3 encoder will re-encode whatever channel layout exists in the source — if your WTV contains a 5.1 AAC track, the output AC3 file will also be 5.1. However, if the source was stereo, the output will be stereo AC3. You can verify the source channel layout by checking the FFmpeg output log, which displays stream details when the command runs.
Yes, there is a generation of quality loss because this is a transcode between two lossy codecs — the AAC audio from the WTV file is decoded to raw PCM and then re-encoded as AC3. Both AAC and AC3 are perceptual codecs that discard audio data, so transcoding between them compounds that loss. At the default 192k bitrate the degradation is generally not noticeable for typical TV broadcast content, but audiophiles or critical listening applications may prefer a higher bitrate like 384k or 448k to minimize the impact.
The output is a raw AC3 elementary stream — just the bare audio data with no container wrapper around it. The .ac3 extension signals exactly that: pure Dolby Digital audio without any additional container overhead. This is the preferred format for DVD and Blu-ray authoring tools, which expect to receive demuxed audio streams. If you need the AC3 audio inside a container like MKV or MP4, you would change the output filename extension accordingly and FFmpeg would mux it appropriately.
Replace the value after -b:a in the command with your desired bitrate. AC3 supports bitrates from 96k up to 640k, with common choices being 256k, 384k, or 448k for higher quality, or 128k for smaller file sizes. For example, to encode at 384k you would use: ffmpeg -i input.wtv -vn -c:a ac3 -b:a 384k output.ac3. Note that AC3 at 640k is the maximum supported by the Dolby Digital standard and is used in some professional broadcast contexts.
By default, FFmpeg selects the first audio stream in the WTV file, which is typically the primary language track. WTV files from some cable providers include secondary audio tracks such as SAP (Secondary Audio Program) for alternate languages or audio descriptions for the visually impaired. To extract a specific track, add -map 0:a:1 to the command (replacing 1 with the zero-indexed track number you want). For example: ffmpeg -i input.wtv -vn -map 0:a:1 -c:a ac3 -b:a 192k output.ac3 extracts the second audio track.
Yes, you can use a shell loop to process multiple files. On Windows Command Prompt, use: for %f in (*.wtv) do ffmpeg -i "%f" -vn -c:a ac3 -b:a 192k "%~nf.ac3". On Linux or macOS bash, use: for f in *.wtv; do ffmpeg -i "$f" -vn -c:a ac3 -b:a 192k "${f%.wtv}.ac3"; done. This processes each WTV file in the current directory and outputs a corresponding .ac3 file with the same base name. This browser-based tool processes one file at a time, so the command line approach is recommended for bulk conversions.

Technical Notes

WTV is a container format exclusive to Windows Media Center and uses a variant of the Advanced Systems Format (ASF) internally, similar to WMV/WMA. Recordings typically contain H.264 (libx264) video with AAC audio, though older recordings or certain cable card setups may use MPEG-2 video with MP3 audio. The AC3 encoder in FFmpeg (libac3) is a mature, well-tested implementation of the Dolby Digital standard. AC3 supports up to 5.1 channels and bitrates from 32k to 640k, with broadcast standard typically targeting 192k–384k for stereo and 5.1 respectively. One important limitation is that raw .ac3 files have no container-level timestamp or chapter support, so if your WTV recording contained commercial break markers or DVR chapter points, those will not be present in the output. WTV broadcast metadata fields (program title, episode name, channel, air date) are also not transferable to the AC3 elementary stream format. For files containing multiple audio tracks — common with bilingual broadcasts or SAP tracks — only the default stream is extracted unless explicitly mapped using the -map flag. The 192k default bitrate is appropriate for stereo Dolby Digital content; for 5.1 surround source material extracted from HD broadcast recordings, consider raising this to 384k or 448k to maintain surround fidelity.

Related Tools