Convert DV to AC3 — Free Online Tool

Extract and convert the PCM audio track from a DV camcorder file into Dolby Digital AC3 format using the ac3 encoder. This is useful when you need broadcast-compatible surround-capable audio from legacy DV footage without re-encoding the video.

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

DV files store audio as uncompressed 16-bit PCM (pcm_s16le) at either 48kHz or 32kHz, recorded directly alongside the intra-frame compressed dvvideo stream. This conversion discards the video entirely and transcodes only the PCM audio track into AC3 (Dolby Digital) at 192kbps. The ac3 encoder applies perceptual lossy compression based on psychoacoustic modeling, reducing the raw PCM data significantly while preserving perceived audio quality for stereo or surround listening. Since DV audio is uncompressed, the source quality ceiling is high, making it a clean input for AC3 encoding.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg tool. In the browser-based version of this tool, FFmpeg runs locally via WebAssembly (FFmpeg.wasm) — your DV file never leaves your device.
-i input.dv Specifies the input DV file. FFmpeg demuxes the DV container, separating the dvvideo stream and the pcm_s16le audio stream; only the audio stream proceeds to encoding since the output format is AC3.
-c:a ac3 Selects the AC3 (Dolby Digital) encoder for the audio stream, transcoding the raw PCM audio from the DV source into the perceptually compressed AC3 bitstream format used in DVDs and broadcast.
-b:a 192k Sets the AC3 audio bitrate to 192 kilobits per second, the standard bitrate for stereo Dolby Digital. This balances file size and audio fidelity for typical stereo DV camcorder audio.
output.ac3 Specifies the output file as a raw AC3 bitstream file. The .ac3 extension signals FFmpeg to write a bare Dolby Digital bitstream with no additional container wrapping.

Common Use Cases

  • Preparing audio from DV camcorder footage for inclusion in a DVD authoring project, which requires AC3 as its primary audio format
  • Stripping the clean PCM audio from a DV tape capture and delivering it as a Dolby Digital file to a broadcast facility with AC3 ingest requirements
  • Archiving the audio commentary or interview track from a DV documentary shoot into a compact, widely compatible AC3 file for long-term storage and distribution
  • Extracting audio from a DV training or event video to embed as a Dolby Digital audio track in a Blu-ray or streaming package
  • Converting DV audio to AC3 to use as a standalone surround-capable audio track in a video editor that natively supports Dolby Digital but not raw DV audio

Frequently Asked Questions

Yes, some quality loss occurs because DV stores audio as uncompressed 16-bit PCM, which is lossless by nature, while AC3 uses lossy perceptual compression. However, at the default 192kbps bitrate, the degradation is generally inaudible for speech and most music content. If the audio will be re-encoded again later (e.g., for streaming), consider using a higher bitrate like 320k or 384k to preserve more headroom.
No. AC3 is a pure audio format with no container support for video streams. FFmpeg automatically drops the dvvideo stream when writing to a .ac3 output file. If you need to keep the video, you would need to output to a container like MKV or MP4 that supports both video and AC3 audio.
The channel layout of the AC3 output will match the source DV audio, which is almost always stereo (2-channel) from a camcorder. AC3 is capable of carrying up to 5.1 channels, but simply converting a stereo DV file to AC3 does not add surround channels — you would need to upmix the audio separately if surround output is required.
Replace the value after -b:a with your desired bitrate. For example, use -b:a 384k for higher quality or -b:a 128k for a smaller file. AC3 supports bitrates from 96k up to 640k; 192k is the standard choice for stereo Dolby Digital, while 384k is common for 5.1 content. Higher bitrates produce files closer in quality to the original uncompressed PCM source.
Yes, using a shell loop. In Bash you can run: for f in *.dv; do ffmpeg -i "$f" -c:a ac3 -b:a 192k "${f%.dv}.ac3"; done. On Windows Command Prompt, use: for %f in (*.dv) do ffmpeg -i "%f" -c:a ac3 -b:a 192k "%~nf.ac3". Each DV file will produce a separate AC3 file with the same base filename.
DV records audio as signed 16-bit little-endian PCM (pcm_s16le) at 48kHz (or 32kHz in 4-channel mode), a format defined in the DV standard to ensure frame-accurate sync with the video. This gives the AC3 encoder a clean, high-quality input signal with no prior compression artifacts. The ac3 encoder handles the sample rate and bit depth conversion internally, so no additional resampling flags are needed in the command.

Technical Notes

DV audio is always embedded as pcm_s16le, typically at 48kHz stereo, locked to the video frame rate for tape sync purposes. When FFmpeg reads a .dv file, it demuxes the audio as a raw PCM stream before passing it to the ac3 encoder. The AC3 format (ATSC A/52) uses a transform-based codec operating on 512-sample blocks with psychoacoustic bit allocation, producing a standardized bitstream compatible with virtually all DVD players, Blu-ray players, AV receivers, and broadcast decoders. One notable limitation: AC3 requires input sample rates of 32kHz, 44.1kHz, or 48kHz — DV's native 48kHz maps cleanly without resampling. Metadata such as recording date/time embedded in DV tape headers is not transferred to the AC3 output, as the AC3 format carries no equivalent metadata fields. If the DV source was recorded in 32kHz 4-channel mode (a less common DV variant), FFmpeg will typically downmix to stereo automatically during encoding.

Related Tools