Convert MOV to DV — Free Online Tool
Convert MOV files to DV format using the dvvideo codec and PCM audio, producing broadcast-ready digital video files compatible with legacy camcorder workflows and professional tape-based editing systems. This conversion transcodes your QuickTime container's video stream into intra-frame DCT-compressed DV video with uncompressed 16-bit PCM audio.
to
FFmpeg Command
Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg
Drop your MOV 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
During this conversion, FFmpeg fully re-encodes the video stream from whatever codec is stored in the MOV container (typically H.264 or H.265) into dvvideo, which uses intra-frame DCT compression — meaning each frame is compressed independently without any inter-frame prediction. This is fundamentally different from the GOP-based compression used by H.264/H.265. The audio is simultaneously transcoded to pcm_s16le, 16-bit little-endian uncompressed PCM, which is the only audio format the DV container supports. Notably, any advanced MOV features such as chapter markers, subtitle tracks, multiple audio tracks, and transparency channels are discarded entirely, as the DV format has no support for these. The output is a fixed-bitrate DV file sized roughly in proportion to its duration regardless of the original MOV's content complexity.
What Each Flag Does
| Flag | What it does |
|---|---|
ffmpeg
|
Invokes the FFmpeg command-line tool, which is running here as a WebAssembly (FFmpeg.wasm) instance entirely within your browser — no data is sent to any server. |
-i input.mov
|
Specifies the input file as a MOV (QuickTime) container. FFmpeg will detect and demux all streams inside — typically a video stream and one or more audio tracks — before passing them to the encoders. |
-c:v dvvideo
|
Encodes the video stream using the dvvideo codec, which applies intra-frame DCT compression at a fixed ~25 Mbps bitrate as defined by the DV standard — fully re-encoding the video from whatever codec the source MOV used. |
-c:a pcm_s16le
|
Transcodes the audio to 16-bit signed little-endian uncompressed PCM, which is the only audio format the DV container supports. Any compressed audio (AAC, MP3, etc.) from the source MOV is decoded and written as raw PCM in the output. |
output.dv
|
Defines the output file as a .dv file. The .dv extension tells FFmpeg to use the raw DV muxer, producing a file compatible with FireWire DV deck workflows, legacy NLE systems, and any application that supports the standard DV file format. |
Common Use Cases
- Preparing modern MOV footage for ingestion into legacy non-linear editing systems like older versions of Final Cut Pro or Avid that were built around native DV workflows
- Converting QuickTime files for output to DV tape decks or camcorders via FireWire (IEEE 1394) for archival onto physical tape media
- Delivering video content to broadcast facilities or post-production houses that require DV-format files as part of their standardized ingest pipeline
- Re-encoding MOV files captured on modern cameras into DV format for compatibility with older educational or institutional video editing setups that only support DV
- Creating DV proxy files from high-resolution MOV masters for lightweight offline editing before conforming back to the original footage
- Archiving event or documentary footage in the DV format to match the format of other tapes in an existing physical DV archive for long-term catalog consistency
Frequently Asked Questions
Yes, this conversion is lossy. The dvvideo codec compresses each frame independently using DCT compression at a fixed bitrate of approximately 25 Mbps for standard DV, which is significantly lower in fidelity than the original MOV content if it was encoded with a high-quality codec like ProRes or lossless settings. Additionally, DV format enforces strict resolution and frame rate constraints — typically 720x480 at 29.97fps for NTSC or 720x576 at 25fps for PAL — so if your MOV has a different resolution or frame rate, FFmpeg will scale and resample the video during conversion.
The DV container format mandates PCM audio (pcm_s16le) as its only supported audio codec. MOV files commonly carry AAC, MP3, or other compressed audio codecs, none of which are valid inside a DV file. FFmpeg automatically transcodes the audio to 16-bit uncompressed PCM during this conversion. This actually results in lossless-quality audio in the output, though the original lossy audio data (e.g., AAC) will have already gone through one encode cycle before becoming PCM.
All of these features are silently discarded. The DV format supports only a single video stream and a single audio stream and has no provision for subtitle tracks, chapter markers, or secondary audio tracks — all of which MOV natively supports. If your MOV contains these elements, the conversion will succeed but only the primary video and first audio track will be carried into the DV file.
Technically yes, but DV format does not support HD or 4K resolutions in its standard form. Standard DV is constrained to 720x480 (NTSC) or 720x576 (PAL) at standard definition. FFmpeg will scale your high-resolution MOV footage down to fit these DV dimensions during conversion. If you need HD DV-style compression, you would need to look at DVCPRO HD or other variants, which are separate formats not produced by this tool's default command.
You can batch process files in a Unix/macOS shell using a loop: `for f in *.mov; do ffmpeg -i "$f" -c:v dvvideo -c:a pcm_s16le "${f%.mov}.dv"; done`. On Windows Command Prompt, use: `for %f in (*.mov) do ffmpeg -i "%f" -c:v dvvideo -c:a pcm_s16le "%~nf.dv"`. Each file is processed sequentially, and the output DV filename will match the input MOV filename with the extension replaced.
DV format uses a fixed bitrate of approximately 25 Mbps regardless of scene complexity, which can make DV files substantially larger than MOV files that used efficient variable-bitrate codecs like H.264 or H.265. A one-hour MOV encoded with H.264 might be a few gigabytes, whereas the equivalent DV file would be roughly 11–13 GB. The intra-frame-only compression in DV also contributes to larger file sizes compared to inter-frame codecs that store differences between frames.
Technical Notes
The DV format imposes strict constraints that make this one of the more transformative conversions possible from MOV. The dvvideo codec in FFmpeg implements the IEC 61834 DV standard, producing files at a fixed 25 Mbps with 4:1:1 chroma subsampling for NTSC or 4:2:0 for PAL — a notable downgrade from the 4:2:0 or higher chroma resolution typical in modern MOV-encoded content. There are no CRF or bitrate control flags available for dvvideo, as the bitrate is entirely determined by the DV specification. Frame rate and resolution are enforced by the DV standard, so FFmpeg will automatically apply scaling and frame rate conversion to any MOV source that doesn't match the target DV dimensions. The pcm_s16le audio is written at 48kHz stereo by default, matching the DV spec. Transparency (alpha channel) present in MOV files using codecs like PNG or certain ProRes variants will be lost entirely. The output .dv file is a raw DV stream, which is directly compatible with FireWire-based DV deck transfers and legacy editing applications that support DV ingest.