Convert DV to OGG — Free Online Tool

Convert DV camcorder footage to OGG audio, extracting the PCM audio track and re-encoding it as Vorbis using libvorbis. This is ideal for archiving or distributing the audio content from DV tapes without carrying the bulky dvvideo stream.

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 video using intra-frame DCT compression (dvvideo) and audio as uncompressed 16-bit PCM (pcm_s16le) at either 48 kHz or 32 kHz. Because OGG is a purely audio container with no support for the dvvideo codec, the video stream is discarded entirely during this conversion — it is not remuxed or re-encoded, just dropped. The PCM audio track is then transcoded to Vorbis using libvorbis, a lossy perceptual audio codec. Vorbis uses variable bitrate encoding, and at the default quality level of 4 (roughly 128 kbps), it produces audio that is perceptually very close to the original PCM source while dramatically reducing file size. The result is a standalone OGG Vorbis audio file containing only the audio from your DV footage.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg binary. In the browser version of this tool, this runs via FFmpeg.wasm compiled to WebAssembly, so no installation is needed and no files leave your device.
-i input.dv Specifies the input DV file. FFmpeg will detect the dvvideo video stream and the pcm_s16le audio stream automatically from the DV container structure.
-c:a libvorbis Sets the audio encoder to libvorbis, which transcodes the DV file's uncompressed PCM audio track into the Vorbis lossy audio codec suitable for the OGG container.
-q:a 4 Sets the Vorbis variable bitrate quality to level 4, which targets approximately 128 kbps and provides a good balance between file size and audio fidelity for typical DV camcorder audio content. Valid values range from 0 to 10.
output.ogg Defines the output filename and tells FFmpeg to write an OGG container. Because no video codec is specified and OGG does not support dvvideo, the video stream from the DV file is automatically discarded, producing an audio-only OGG Vorbis file.

Common Use Cases

  • Extracting interview audio recorded on a DV camcorder to publish as a podcast episode or audio article
  • Archiving the spoken commentary or on-location sound from DV tape transfers without retaining the large video data
  • Pulling music or live performance audio captured on a DV camcorder for distribution on platforms that accept OGG Vorbis
  • Creating a lightweight audio-only version of a DV-based documentary for streaming or embedding on a website using open formats
  • Reducing storage footprint when you only need the audio record from hours of DV camcorder footage, such as event recordings or field interviews
  • Providing an open-format audio file to Linux or open-source media players and workflows that prefer or require OGG Vorbis over proprietary formats

Frequently Asked Questions

Yes, there is some quality loss because Vorbis is a lossy codec while DV stores audio as uncompressed 16-bit PCM. However, at quality level 4 (the default, roughly 128 kbps VBR), libvorbis is transparent or near-transparent for most listeners and source material. If the DV footage was recorded at 32 kHz instead of 48 kHz, the output Vorbis file will reflect the same sample rate, which may sound slightly less bright than a 48 kHz source.
The video stream — encoded in the dvvideo codec — is completely discarded. OGG is an audio-only container in this context and cannot hold a dvvideo stream. FFmpeg automatically drops the video because no video codec or output video stream is specified in the command. If you need to keep the video, you would need to convert to a container that supports both audio and video, such as MKV or MP4.
Adjust the value after the -q:a flag. Vorbis quality ranges from 0 (lowest, roughly 64 kbps) to 10 (highest, roughly 500 kbps). For example, use -q:a 6 for higher fidelity at around 192 kbps, or -q:a 2 for smaller files at around 96 kbps. For archiving audio from DV tapes, quality 6 or higher is recommended to preserve the full dynamic range of the original PCM recording.
Yes, OGG supports multiple audio codecs. You can substitute -c:a libopus for modern, efficient lossy encoding (Opus typically outperforms Vorbis at the same bitrate), or -c:a flac for lossless compression that preserves the original PCM data exactly. For lossless archiving of DV audio with FLAC, drop the -q:a flag entirely: ffmpeg -i input.dv -c:a flac output.ogg.
Significantly smaller, because the DV file contains both the bulky dvvideo stream and uncompressed PCM audio, while the OGG file contains only compressed Vorbis audio. A typical DV file runs around 200 MB per minute of footage. The resulting OGG Vorbis file at quality 4 will be roughly 1 MB per minute, representing a reduction of over 99%. The size difference reflects the removal of the video stream as much as the audio compression itself.
Yes, with a small shell script modification. On Linux or macOS, use: for f in *.dv; do ffmpeg -i "$f" -c:a libvorbis -q:a 4 "${f%.dv}.ogg"; done. On Windows Command Prompt, use: for %f in (*.dv) do ffmpeg -i "%f" -c:a libvorbis -q:a 4 "%~nf.ogg". This processes each DV file in the current directory and outputs a corresponding OGG file with the same base filename.

Technical Notes

DV audio is stored as pcm_s16le at either 48 kHz (standard DV) or 32 kHz (long-play DV mode), and FFmpeg preserves whichever sample rate the source uses when feeding it into the Vorbis encoder. The Vorbis encoder (libvorbis) uses a quality-based variable bitrate model rather than a fixed bitrate, so the -q:a parameter controls perceptual quality rather than exact file size. OGG containers do support chapter markers and multiple audio tracks per the specification, but a single-stream DV source will produce a single-track OGG file — chapter metadata would need to be injected separately post-conversion using a tool like ffmpeg's -metadata flag or a dedicated OGG tagger. DV files do not carry embedded metadata tags (title, artist, etc.), so the output OGG file will have no ID3-style tags unless added manually. Note that while OGG with FLAC is technically lossless, using -c:a flac in this pipeline still represents a one-generation loss relative to the original DV tape, because the DV video recording process itself involved lossy DCT compression of the source signal — only the audio channel was preserved losslessly in the PCM track.

Related Tools