Extract Audio from DV to AIF — Free Online Tool

Extract the PCM audio track from a DV camcorder file and save it as a high-quality AIF file, converting from the DV container's native 16-bit little-endian PCM to AIF's 16-bit big-endian PCM format. This is ideal for pulling clean, uncompressed audio from DV tape captures into a Mac-native format ready for use in Logic Pro, GarageBand, or Final Cut Pro.

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 PCM signed 16-bit little-endian (pcm_s16le) alongside the intra-frame compressed DV video stream. This tool discards the video entirely and re-wraps the audio into an AIF container, which requires PCM signed 16-bit big-endian (pcm_s16be). Because both formats are uncompressed 16-bit PCM, the only transformation is a byte-order swap from little-endian to big-endian — no re-sampling, no lossy encoding, and no quality degradation occurs. The audio data itself remains bit-for-bit equivalent after the endianness conversion.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg tool. In this browser-based tool, FFmpeg runs locally via WebAssembly (FFmpeg.wasm) — no data is sent to a server.
-i input.dv Specifies the input DV file, which contains a dvvideo video stream and a pcm_s16le (16-bit little-endian PCM) audio stream in the DV container format used by digital camcorders.
-vn Disables video output entirely, ensuring that only the audio stream is processed and written to the AIF file. This discards the DV video stream rather than attempting to convert it, which is the correct behavior for an audio extraction tool.
-c:a pcm_s16be Sets the audio codec to PCM signed 16-bit big-endian, which is the standard codec for AIF files and matches the 16-bit depth of DV audio. This performs a byte-order conversion from DV's little-endian PCM without any lossy compression or bit-depth change.
output.aif Specifies the output filename with the .aif extension. FFmpeg uses this extension to determine the AIF container format, which wraps the pcm_s16be audio stream in Apple's Audio Interchange File Format, making it natively compatible with macOS audio and video applications.

Common Use Cases

  • Pulling the location audio from a DV tape digitization into AIF for editing in Logic Pro or Pro Tools on a Mac
  • Extracting interview or documentary audio captured on a MiniDV camcorder to hand off to a sound editor who works in an Apple ecosystem
  • Archiving the audio track from family DV home videos as standalone lossless AIF files for long-term preservation
  • Separating on-set production audio recorded to DV from the video so it can be synced to a higher-resolution video source in post-production
  • Converting DV audio captures from a field recorder or deck into AIF files compatible with Final Cut Pro's native import pipeline
  • Preparing DV-sourced audio for mastering or broadcast delivery workflows that require uncompressed AIF files

Frequently Asked Questions

No quality is lost in this conversion. Both DV and AIF store audio as uncompressed 16-bit PCM — the only difference is byte order (little-endian in DV versus big-endian in AIF). The tool performs a byte-swap rather than any form of compression or re-sampling, so the resulting AIF file is acoustically identical to the original DV audio track.
The difference is endianness — the order in which bytes are stored in memory. DV, developed by Sony and Panasonic for consumer and professional camcorders in the 1990s, adopted little-endian byte ordering consistent with the hardware it ran on. AIF was designed by Apple, whose earlier Motorola 68000-based systems used big-endian architecture, and that convention carried forward into the format specification. Both are identical in audio quality at 16-bit depth; only the byte arrangement differs.
No. The DV format's audio track is recorded at 16-bit depth (or occasionally 12-bit in some consumer DV modes), so the source data does not contain any additional bit depth information to extract. Encoding the output as pcm_s24be or pcm_s32be would simply pad the samples with zeros and increase file size without adding any real audio information. The default pcm_s16be codec used by this tool matches the actual bit depth of the source.
The AIF file will be much smaller than the DV file because it contains only the audio stream. A typical DV file is around 13GB per hour of footage (the video alone accounts for most of this at approximately 25 Mbps). The extracted AIF audio at 16-bit stereo 48kHz — the standard DV audio rate — is approximately 345MB per hour, which is a dramatic reduction in file size purely because the video stream is discarded.
You can replace pcm_s16be in the command with pcm_s24be, pcm_s32be, pcm_f32be, or pcm_f64be to target a different AIF-compatible codec. For example: ffmpeg -i input.dv -vn -c:a pcm_s24be output.aif. However, as noted above, since DV audio is natively 16-bit, upgrading the codec will not recover any additional audio detail — it is only useful if your downstream workflow strictly requires a specific bit depth format.
Yes. On macOS or Linux, you can use a shell loop: for f in *.dv; do ffmpeg -i "$f" -vn -c:a pcm_s16be "${f%.dv}.aif"; done. On Windows Command Prompt, the equivalent is: for %f in (*.dv) do ffmpeg -i "%f" -vn -c:a pcm_s16be "%~nf.aif". This is especially practical when digitizing an entire collection of DV tapes where each tape has been captured as a separate DV file.

Technical Notes

DV audio is typically recorded at 48kHz 16-bit stereo (or in some consumer modes at 32kHz 12-bit with up to four channels). This tool outputs at whatever sample rate and channel configuration is present in the source DV file — no resampling is applied. AIF natively supports the 48kHz sample rate used by DV, so no sample rate conversion is needed. Metadata such as timecode embedded in the DV stream is not transferred to the AIF output, as AIF has no equivalent timecode metadata container. If your DV file was captured with audio locked to video sync (as is standard in DV), the resulting AIF will maintain the original audio duration and sync accuracy. One known limitation: some DV files captured from tapes with audio dropout or format irregularities may have discontinuities in the PCM stream — these will be present in the AIF output as well, since no interpolation is applied. The AIF format is natively recognized by macOS applications including Logic Pro, Final Cut Pro, QuickTime Player, and GarageBand without requiring any additional codecs.

Related Tools