Convert HEVC to DV — Free Online Tool
Convert HEVC/H.265 video files to DV format using the dvvideo codec with PCM audio — bridging modern high-efficiency compression with the legacy intra-frame format used by camcorders and broadcast editing workflows. This tool runs entirely in your browser with no file uploads required.
to
FFmpeg Command
Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg
Drop your HEVC file here
or click to browse
Free — no uploads, no signups. Your files never leave your browser.
Settings
Note: Browser-based encoding uses approximate quality targets. For precise CRF compression, copy the FFmpeg command above and run it on your desktop.
Estimated output:
Conversion Complete!
DownloadHow It Works
This conversion is a full re-encode in both video and audio streams. The HEVC source, which uses inter-frame compression with complex predictive encoding, must be completely decoded frame by frame and then re-encoded using the dvvideo codec's intra-frame DCT compression — meaning every frame is compressed independently with no reference to other frames. This is a fundamentally different compression architecture. The DV format supports only specific resolutions (525-line NTSC at 720x480 or 625-line PAL at 720x576), so your HEVC source will be scaled and potentially cropped or letterboxed to fit DV's fixed frame dimensions. Any audio in the HEVC file is decoded and re-encoded as PCM signed 16-bit little-endian (pcm_s16le) at a fixed rate compatible with DV's audio spec. Because DV imposes strict constraints on resolution, frame rate, and audio format, FFmpeg must aggressively conform the source to those parameters, which means 4K or HDR content from HEVC will be downscaled and tone-mapped to fit DV's SD color space.
What Each Flag Does
| Flag | What it does |
|---|---|
ffmpeg
|
Invokes the FFmpeg binary — the open-source multimedia processing engine that handles all decoding, filtering, and re-encoding. In the browser-based tool, this runs as FFmpeg.wasm compiled to WebAssembly. |
-i input.hevc
|
Specifies the input file, an HEVC/H.265 encoded video stream. FFmpeg will decode this using its libx265-compatible decoder, unpacking the inter-frame compressed HEVC bitstream into raw frames for re-encoding. |
-c:v dvvideo
|
Selects the dvvideo encoder for the output video stream. This encodes each decoded frame independently using DV's intra-frame DCT compression, conforming to the DV25 standard at approximately 25 Mbps — a completely different compression model from HEVC's predictive inter-frame encoding. |
-c:a pcm_s16le
|
Encodes the output audio as PCM signed 16-bit little-endian, which is the audio format required by the DV container specification. Any compressed audio from the HEVC source (such as AAC or AC-3) is fully decoded and re-encoded as uncompressed PCM to comply with DV's audio format requirements. |
output.dv
|
Specifies the output filename with the .dv extension, which tells FFmpeg to write a raw DV stream file. The .dv container is a minimal format capable of holding exactly one dvvideo stream and one PCM audio stream, matching the strict structural requirements of the DV format. |
Common Use Cases
- Preparing modern H.265 footage for ingestion into legacy non-linear editing software (such as older versions of Final Cut Pro or Avid) that natively supports DV streams but cannot decode HEVC
- Archiving HEVC clips to DV for playback on hardware DV decks or camcorders with FireWire (IEEE 1394) connectivity used in broadcast or educational settings
- Converting HEVC recordings to DV for use in older video production pipelines that require intra-frame-only codecs for reliable scrubbing and editing without hardware acceleration
- Creating DV-compatible files from H.265 drone or action camera footage to feed into broadcast playout systems or tape duplication workflows still operating on DV infrastructure
- Downconverting HEVC content to SD DV format for distribution to clients or institutions whose playback equipment is limited to standard-definition DV tape or file-based DV playback
- Testing or validating DV format compatibility in a media asset management system by generating DV files from contemporary HEVC source material without requiring a hardware encoder
Frequently Asked Questions
Yes, inevitably. The DV format is strictly a standard-definition format — it supports only 720x480 (NTSC) or 720x576 (PAL) resolution. Any HEVC source at 1080p, 4K, or higher will be scaled down to fit these dimensions during conversion. Aspect ratio handling (letterboxing, cropping, or stretching) depends on the source's aspect ratio relative to DV's 4:3 or 16:9 anamorphic modes. There is no way to preserve high-resolution content within a DV container.
Significant quality loss should be expected. HEVC at a typical CRF of 23–28 produces excellent perceptual quality at low bitrates, while DV operates at a fixed bitrate of approximately 25 Mbps (DV25) using intra-frame DCT compression. Although DV's bitrate sounds high, the mandatory SD downscale, the loss of HDR metadata, and the shift from HEVC's efficient inter-frame encoding to DV's simpler intra-frame compression all contribute to a visibly degraded result compared to the HEVC source. DV is a lossy format and this conversion is irreversible.
HDR metadata (such as HDR10 or HLG) present in your HEVC source is not preserved in the DV output. DV has no support for HDR color spaces, wide color gamuts, or high dynamic range signaling. FFmpeg will convert the color space to a standard-definition compatible profile (typically BT.601), but without explicit tone-mapping flags, highlight detail may clip or look washed out. If HDR accuracy matters, you should apply tone-mapping before or during this conversion using additional FFmpeg filter flags.
DV was designed as a camcorder recording format with a fixed, rigid structure: one video stream and one or two channels of PCM audio, period. It has no container-level support for subtitle streams, chapter markers, or secondary audio tracks. When converting from HEVC (which may be embedded in a container like MKV or MP4 carrying multiple streams), only the primary video and first audio track are mapped into the DV output. All other streams are silently discarded.
Yes. On Linux or macOS you can use a shell loop: `for f in *.hevc; do ffmpeg -i "$f" -c:v dvvideo -c:a pcm_s16le "${f%.hevc}.dv"; done`. On Windows Command Prompt, use `for %f in (*.hevc) do ffmpeg -i "%f" -c:v dvvideo -c:a pcm_s16le "%~nf.dv"`. Each file is processed sequentially. For very large batches or files over 1GB, running FFmpeg locally like this is strongly preferred over the browser-based tool.
No. The DV format does not expose a quality parameter — dvvideo encodes at a fixed bitrate (approximately 25 Mbps for DV25) with no CRF or bitrate flag available. Unlike the HEVC source where quality is tunable via -crf, DV quality is entirely determined by the format specification itself. The only way to influence perceptual quality is to ensure the input is scaled cleanly to the required DV resolution before encoding, which you can do by adding a scale filter such as `-vf scale=720:480` to the command.
Technical Notes
The dvvideo codec in FFmpeg strictly enforces DV format constraints: the output resolution must match a supported DV profile (NTSC 720x480 at 29.97 fps or PAL 720x576 at 25 fps), and FFmpeg will attempt to auto-select the profile based on the source frame rate. If your HEVC source has an unusual frame rate (e.g., 24fps, 60fps), FFmpeg may fail or produce non-compliant output — you may need to add `-r 29.97` or `-r 25` to force a compatible frame rate. Audio must be PCM signed 16-bit little-endian (pcm_s16le) at either 48000 Hz or 32000 Hz with one or two channels; if the HEVC source carries audio in a different format (e.g., AAC, AC-3, or Opus), it will be decoded and re-encoded to pcm_s16le automatically. The output .dv file is a raw DV stream container with no support for metadata, tags, transparency, or any stream beyond one video and one audio track. Because DV uses intra-frame compression, the resulting files are extremely friendly for frame-accurate editing but are much larger than equivalent HEVC files covering the same duration. Expect output files of approximately 13 GB per hour of NTSC DV footage regardless of source HEVC file size.