Extract Audio from WTV to M4A — Free Online Tool

Extract audio from WTV broadcast recordings and save it as an M4A file with AAC encoding. This tool strips the video stream from Windows Media Center DVR recordings and packages the existing AAC audio into an iTunes-compatible MPEG-4 container — ideal for archiving TV show audio, interviews, or news segments from your recorded TV library.

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 Media Center typically contain an H.264 video stream alongside AAC or MP3 audio. This tool discards the video entirely and extracts only the audio track. Because WTV commonly stores audio as AAC and M4A is an MPEG-4 container that natively holds AAC, the audio stream can be re-encoded at your chosen bitrate into the M4A wrapper. The result is a compact, widely compatible audio file that strips away the large video payload — a WTV recording that might be several gigabytes becomes an M4A file a fraction of that size. The -vn flag explicitly prevents any video data from being written to the output, and the AAC codec ensures compatibility with Apple devices, iTunes, and virtually all modern media players.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg tool. In this browser-based tool, FFmpeg runs locally via WebAssembly (FFmpeg.wasm) — your WTV file never leaves your device.
-i input.wtv Specifies the input file — your Windows Media Center WTV recording. FFmpeg reads the container and identifies the available video and audio streams inside it.
-vn Stands for 'video none' — tells FFmpeg to ignore all video streams from the WTV file and write no video data to the output. This is the core flag that makes this an audio extraction operation rather than a full conversion.
-c:a aac Sets the audio codec to AAC (Advanced Audio Coding), the native and most compatible codec for the M4A container. This ensures the output plays on Apple devices, iTunes, and any modern media player.
-b:a 128k Sets the audio bitrate to 128 kilobits per second, a standard balance of quality and file size for AAC. For broadcast TV audio that was originally at 192k or higher, consider increasing this value to better preserve fidelity.
-vn A second instance of the video-disable flag placed just before the output filename, reinforcing that no video stream should be written to the M4A file. M4A is an audio-only container, so this is both a safeguard and a clarification of intent.
output.m4a The output filename with the .m4a extension, which signals an MPEG-4 audio-only container. This format is natively recognized by iTunes, Apple Music, iOS, and most streaming and playback software.

Common Use Cases

  • Archive the audio from recorded TV news broadcasts or documentaries without keeping the large video file
  • Extract interview audio from a Windows Media Center recording of a talk show or press conference to review or transcribe later
  • Pull the audio track from a recorded live sports commentary to listen on the go without needing the video
  • Convert old WTV recordings from a decommissioned Windows 7 Media Center PC into M4A files for long-term audio archiving in an iTunes library
  • Extract a recorded radio show or simulcast that was captured via a TV tuner card into a podcast-friendly M4A file
  • Isolate music performances or concert segments from recorded broadcast TV specials into standalone M4A audio tracks

Frequently Asked Questions

It depends on the original audio codec in the WTV recording. WTV files recorded by Windows Media Center most commonly store audio as AAC. Since M4A also uses AAC, the conversion re-encodes the audio at your chosen bitrate (default 128k). If the original was recorded at a higher bitrate, re-encoding introduces a small quality loss due to the decode-and-re-encode cycle. To minimize this, select a bitrate equal to or higher than the source recording's audio bitrate.
WTV files contain a full HD or SD video stream alongside the audio, and that video data typically accounts for 90–98% of the file size. By using the -vn flag to discard the video entirely, only the audio is written to the M4A output. A 4GB WTV recording of an hour-long TV show might produce an M4A audio file of only 50–80MB at 128k bitrate.
Yes. M4A with AAC encoding is Apple's native audio format, fully supported by iTunes, the Music app on macOS, and all iOS devices. The output from this tool uses standard AAC in an MPEG-4 container, which is exactly the format Apple uses for its own store purchases and podcast files.
WTV supports multiple audio tracks, a feature commonly used for secondary audio program (SAP) or alternate language broadcasts. By default, FFmpeg selects the first audio track (usually the primary language). M4A does not support multiple audio tracks in a single file, so only one track will be extracted. If you need a different audio track, you can modify the FFmpeg command to add -map 0:a:1 (for the second track) before the output filename.
Replace the -b:a 128k value in the command with your desired bitrate. For example, use -b:a 192k or -b:a 256k for higher quality audio, which is worthwhile if your original WTV recording was captured at a high bitrate from a digital broadcast. The full adjusted command would look like: ffmpeg -i input.wtv -vn -c:a aac -b:a 256k -vn output.m4a. Note that bitrates above 192k offer diminishing returns for AAC.
WTV files embed broadcast metadata such as program title, episode description, channel, and recording timestamps. FFmpeg reads some of this metadata and may map it to standard M4A/iTunes metadata tags, but the mapping is not always complete — WTV uses Microsoft-specific metadata fields that do not have direct M4A equivalents. You may need to manually tag the M4A output using a tool like MusicBrainz Picard or iTunes after conversion.

Technical Notes

WTV is a proprietary Microsoft container introduced with Windows Vista Media Center, and while FFmpeg has solid support for reading it, the format's metadata schema is non-standard and may not map cleanly to MPEG-4 tags in the M4A output. WTV files can contain either AAC or MP3 audio depending on the broadcast source and tuner hardware used during recording; this tool re-encodes to AAC regardless, ensuring M4A compatibility. The -vn flag appears twice in the generated command — once before the output and once as a safety measure — which is harmless and simply reinforces that no video stream should be written. M4A does not support multiple audio tracks, so if a WTV file contains a SAP or secondary language track, only the default (first) audio stream will be extracted. Chapter support is available in M4A but cannot be populated from WTV since WTV does not carry chapter data. For files over 1GB — common with hour-long HD recordings — the displayed FFmpeg command is particularly useful for running the conversion locally, where there are no file size constraints.

Related Tools