Initializing... drag & drop files here
Supports: DVR
A .dvr file is almost always a Microsoft DVR-MS recording — the recorded-TV container Windows XP Media Center Edition, Windows Vista, and Windows 7 wrote when they taped a broadcast. Inside is an ASF container holding an MPEG-2 video stream next to an MPEG-1 Audio Layer II or Dolby Digital (AC-3) soundtrack, plus program metadata. This page walks through pulling that soundtrack out and writing it as a WAV file you can drop into an editor, a transcription tool, or any media player.
.dvr files can be queued and converted with one set of settings.WAV has no bitrate slider, which is why this page shows no compression controls at all. An uncompressed PCM file's size is pure arithmetic — sample rate multiplied by channel count multiplied by bytes per sample — so the three dropdowns above are the size controls. The Audio Codec list sits under "Show All Options" and picks which PCM flavour gets written; PCM 16-bit Little Endian is the default for a WAV target.
| Audio Codec option | What it writes | Rate at 44.1 kHz stereo | Reach for it when |
|---|---|---|---|
| PCM 16-bit Little Endian (default) | Standard CD-style LPCM | 176,400 B/s — about 10.6 MB per minute | Almost every case |
| PCM 24-bit Little Endian | 24-bit LPCM | 264,600 B/s — about 15.9 MB per minute | Multi-pass editing and restoration |
| PCM 32-bit Little Endian | 32-bit LPCM | 352,800 B/s — about 21.2 MB per minute | A mastering chain that expects 32-bit input |
| PCM mu-law | 8-bit G.711 mu-law | 88,200 B/s — about 5.3 MB per minute | North American telephony and IVR tooling |
| PCM A-law | 8-bit G.711 A-law | 88,200 B/s — about 5.3 MB per minute | European telephony tooling |
| Property | DVR-MS (.dvr) |
WAV |
|---|---|---|
| Origin | Microsoft, shipped with Windows XP Media Center Edition | Microsoft and IBM, RIFF specification, 1991 |
| Container | ASF (Advanced Systems Format) | RIFF |
| Carries | MPEG-2 video, audio, program metadata, DRM flags | Audio only |
| Audio coding | MPEG-1 Audio Layer II or Dolby Digital AC-3 — both lossy | LPCM, uncompressed |
| Practical size ceiling | Bounded by the recording drive | Roughly 4 GiB, because RIFF chunk sizes are 32-bit |
| Successor | WTV, introduced with Windows Media Center TV Pack 2008 | None — WAV is still the default interchange format |
| Opens in mainstream audio editors | Rarely | Effectively everywhere |
.dvr isn't from Windows at all" — see the section below.Two cases fall outside what an online converter can do. The first is DRM: a copy-protected DVR-MS recording is encrypted against the recording machine, and there is no legitimate server-side path around that. The second is a naming collision — several security-camera systems, set-top boxes, and dash cameras also write files ending in .dvr using proprietary, undocumented codecs that have nothing to do with Microsoft's format. If the file did not come from Windows Media Center, open it in VLC first; if VLC cannot identify a stream, no general-purpose converter will either. For unprotected Media Center recordings that you would rather keep as video, DVR to MP4 is the more portable target.
No. DVR-MS stores audio as lossy MPEG-1 Layer II or Dolby Digital AC-3, so whatever the broadcast encoder discarded is already gone. Decoding that track to uncompressed PCM gives you a clean, universally editable file — it does not reconstruct detail. Treat WAV here as a working format, not an upgrade.
Because the DVR-MS audio was compressed and the WAV is not. We size WAV output from the PCM formula rather than the source bitrate: sample rate multiplied by channels multiplied by bytes per sample. At 44.1 kHz, 16-bit, stereo that is a flat 176,400 bytes per second — about 10.6 MB per minute — no matter how heavily the original broadcast was compressed.
Very likely. Windows Media Center flagged protected broadcasts so playback was tied to the recording device, and that restriction is baked into the file. Unprotected recordings of over-the-air or unencrypted channels convert normally; DRM-locked ones cannot be decoded by any server-side tool.
.dvr file the same thing?Not necessarily. The extension is not owned by anyone, and CCTV recorders, PVRs, and dash cameras all reuse it for their own proprietary containers. This tool targets Microsoft DVR-MS. A quick test: if VLC opens the file and reports an MPEG-2 video stream with MP2 or AC-3 audio, it is a Media Center recording and will convert.
Keep the default 16-bit. Transcription engines quantise to 16-bit internally anyway, so 24-bit and 32-bit only inflate the upload. If the file is long, pair 16-bit with MONO and a 16000 HZ sample rate — speech recognition is tuned for that range and the file drops to roughly a fifth the size of the same audio at 44.1 kHz stereo.
Yes — that is what the Trim control is for. Switch it off "Unchanged", enter a Start time and a Duration, and only that window is decoded and written. Entering values as HH:MM:SS.sss is easier than counting seconds on a two-hour recording. To cut the finished audio into several pieces instead, use the Audio Cutter.
Leave Audio Channel on ORIGINAL and the source channel layout is preserved, so a 5.1 AC-3 broadcast keeps all six channels. Be aware that multichannel WAV relies on the extensible RIFF header — professional editors read it fine, but some lightweight players either downmix it or refuse to open it. Choose STEREO explicitly if the destination is a simple player.
They are dropped. A DVR-MS file carries channel, title, and schedule metadata alongside the media streams, and broadcasts frequently carry caption data too. WAV is an audio-only RIFF container with nowhere to put any of it, so the output is the soundtrack and nothing else. Convert to a video container such as DVR to MKV if you need to keep more than the audio.
Because WAV output is uncompressed PCM, and PCM has no rate-control knob. The only levers on file size are sample rate, channel count, and bit depth — all three of which are exposed above. Pages that target a compressed format, such as DVR to MP3, show bitrate and quality controls instead.