Extract Audio from DV to AC3 — Free Online Tool
Extract and convert the PCM audio track from a DV camcorder file into AC3 (Dolby Digital) format. This tool strips the video stream entirely and re-encodes the raw 16-bit PCM audio to AC3 at 192kbps — ideal for repurposing DV footage audio for DVD authoring or broadcast workflows.
to
FFmpeg Command
Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg
Drop your DV 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
DV files store audio as uncompressed 16-bit little-endian PCM (pcm_s16le) interleaved with the dvvideo stream — typically at 48kHz stereo or 32kHz in some camcorder modes. This conversion discards the dvvideo stream entirely using the -vn flag and re-encodes only the PCM audio track using the AC3 (Dolby Digital) codec. Because PCM is uncompressed and AC3 is a lossy perceptual codec, the encoder applies psychoacoustic compression to reduce file size significantly. The result is a standalone .ac3 file containing a Dolby Digital audio stream, which is directly compatible with DVD authoring tools and broadcast playout systems without any further container wrapping.
What Each Flag Does
| Flag | What it does |
|---|---|
ffmpeg
|
Invokes the FFmpeg binary — the open-source multimedia processing engine that handles DV demuxing, PCM audio decoding, and AC3 encoding in this conversion pipeline. |
-i input.dv
|
Specifies the input DV file. FFmpeg reads the DV container, demuxes the dvvideo and pcm_s16le streams, and makes both available for further processing — though only the audio stream will be used. |
-vn
|
Disables video output entirely, telling FFmpeg to ignore the dvvideo stream from the DV file. Without this flag, FFmpeg would attempt to include or transcode the video, which is unnecessary for audio extraction. |
-c:a ac3
|
Selects the AC3 (Dolby Digital) encoder for the audio stream. This re-encodes the raw PCM audio from the DV file into the lossy Dolby Digital format, which is natively compatible with DVD authoring tools and broadcast playout systems. |
-b:a 192k
|
Sets the AC3 audio bitrate to 192 kilobits per second, the standard stereo Dolby Digital bitrate for DVD-Video. This balances file size reduction against audio fidelity when compressing the original uncompressed PCM source. |
output.ac3
|
Defines the output filename with the .ac3 extension, producing a raw Dolby Digital elementary stream. This bare AC3 format is the correct deliverable for DVD and Blu-ray authoring workflows that mux audio and video streams separately. |
Common Use Cases
- Prepare DV camcorder audio for inclusion in a DVD project, where AC3 is the standard required audio format for DVD-Video compliance.
- Extract interview or event audio recorded on a DV tape deck and deliver it as a Dolby Digital file to a broadcast television post-production facility.
- Reduce the file footprint of archival DV footage audio for storage — the raw PCM in DV is large; AC3 at 192kbps is dramatically smaller while remaining broadcast-quality.
- Feed the extracted AC3 audio into a video editing timeline that requires a pre-encoded Dolby Digital stream rather than raw PCM for a multichannel mix.
- Convert DV camcorder audio captured from an analog-to-digital converter into AC3 for use as a secondary audio track in a Blu-ray or DVD authoring workflow.
- Separate the audio commentary or live sound from a DV event recording to produce a standalone Dolby Digital deliverable for a client or broadcaster.
Frequently Asked Questions
Yes, some quality loss occurs because this conversion moves from lossless PCM (as stored in DV) to the lossy AC3 perceptual codec. DV stores audio as uncompressed 16-bit PCM at 48kHz, so it is bit-perfect source material. AC3 at the default 192kbps is excellent quality and indistinguishable from the source for most listeners, but it is technically a lossy transcode. If you need lossless output, consider extracting to WAV instead.
The output is a raw AC3 elementary stream — a bare Dolby Digital audio file without any container wrapper. This is the format expected by most DVD and Blu-ray authoring tools like DVDStyler or Encore, which mux the AC3 stream themselves. If you need the audio wrapped in a container like MKV or MOV for playback in a media player, you would need to add a container flag to the FFmpeg command.
FFmpeg will automatically handle DV files recorded in 32kHz mode (a camcorder-specific recording setting). However, AC3 encoding typically performs best at 48kHz, so FFmpeg will resample the audio to 48kHz before encoding. This resampling step is transparent and adds no perceptible degradation, but it means the encoded AC3 will be at 48kHz regardless of the original DV sample rate.
Replace the '192k' value after the '-b:a' flag with your desired bitrate. Supported AC3 bitrates include 96k, 128k, 192k, 256k, 320k, 384k, 448k, and 640k. For DVD authoring, 192k is a common standard, while broadcast deliveries often require 192k or 384k. For example, to encode at 384kbps: ffmpeg -i input.dv -vn -c:a ac3 -b:a 384k output.ac3.
Yes. On Linux or macOS, you can run a shell loop: for f in *.dv; do ffmpeg -i "$f" -vn -c:a ac3 -b:a 192k "${f%.dv}.ac3"; done. On Windows Command Prompt: for %f in (*.dv) do ffmpeg -i "%f" -vn -c:a ac3 -b:a 192k "%~nf.ac3". This is particularly useful for processing digitized tape collections where each tape segment is a separate DV file.
No. DV files embed timecode and recording-date metadata in the DV stream itself, which is tied to the video container structure. Since this conversion discards the video stream and outputs a raw AC3 elementary stream, that metadata is not preserved. If retaining timecode or recording metadata is important, you should first extract it from the DV file using a tool like dvgrab before running the audio conversion.
Technical Notes
DV's audio track is stored as pcm_s16le — signed 16-bit little-endian PCM — at either 48kHz stereo (standard) or 32kHz in LP recording modes used by some consumer camcorders. This means the source audio entering the AC3 encoder is already at CD quality or better, making it a clean input for lossy compression. The AC3 codec (standardized as Dolby Digital) uses a modified discrete cosine transform with psychoacoustic masking and supports up to 5.1 channels, though DV audio is almost always stereo, so the output will be a stereo AC3 stream. The default 192kbps bitrate is the established standard for stereo Dolby Digital on DVD-Video and satisfies most broadcast delivery specs. One notable limitation: raw .ac3 elementary streams are not directly seekable in all media players — VLC handles them well, but some players expect the AC3 wrapped in a transport stream or container. For DVD authoring, the raw stream is correct and expected. FFmpeg does not encode the AC3 padding bit or dialnorm metadata by default; if your broadcast spec requires specific dialnorm values, you will need to add the '-dialnorm' option manually.