Extract Audio from MOD to WAV — Free Online Tool

Extract clean, uncompressed audio from JVC or Panasonic camcorder MOD files and save it as a WAV file using PCM 16-bit encoding. This tool strips the MPEG-2 video stream and decodes the camcorder's compressed audio into a lossless PCM WAV — ideal for archiving, editing, or broadcast use.

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

MOD files from JVC and Panasonic camcorders store video as MPEG-2 inside a modified MPEG-PS container, with audio typically encoded as Dolby AC-3 (DD) or MPEG-1 Layer II at relatively low bitrates. During this conversion, FFmpeg discards the MPEG-2 video stream entirely using the -vn flag, then decodes the compressed camcorder audio and re-encodes it into PCM signed 16-bit little-endian — the standard uncompressed format used inside WAV files. The result is a fully uncompressed audio file with no generation loss from further encoding, even though the original camcorder audio was lossy. File sizes will be significantly larger than the audio portion of the original MOD because PCM is uncompressed.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg tool. In the browser version of this tool, FFmpeg runs locally via WebAssembly (FFmpeg.wasm), so no files leave your device. The identical command also runs on any desktop FFmpeg installation.
-i input.mod Specifies the input MOD file — the camcorder recording from a JVC or Panasonic device. FFmpeg's MPEG-PS demuxer handles the .MOD extension by treating it as a standard MPEG program stream and identifying both the MPEG-2 video and compressed audio streams inside.
-vn Disables video output entirely, telling FFmpeg to ignore the MPEG-2 video stream in the MOD file. This ensures only the audio stream is processed, which makes the extraction faster since FFmpeg skips decoding the video frames.
-c:a pcm_s16le Decodes the compressed camcorder audio (typically AC-3 or MPEG Layer II) and re-encodes it as signed 16-bit little-endian PCM — the standard uncompressed audio format used inside WAV files. This codec is supported universally across DAWs, NLEs, and operating systems without any additional software.
output.wav Sets the output filename and container. The .wav extension tells FFmpeg to wrap the PCM audio in a Waveform Audio File Format container, which stores the pcm_s16le audio alongside a standard RIFF header that describes the sample rate, bit depth, and channel count from the original MOD recording.

Common Use Cases

  • Extracting interview or event audio recorded on a JVC Everio or Panasonic camcorder for use in a video editing project where the NLE requires a standard PCM WAV track
  • Archiving the audio from old camcorder footage to a broadcast-safe, universally compatible WAV file before the MOD files become harder to open on modern systems
  • Sending camcorder-recorded audio to a sound engineer or podcast editor who cannot open MOD files in their DAW but needs an uncompressed WAV
  • Creating a clean audio reference track from MOD footage to sync with a separately recorded high-quality audio source during post-production
  • Extracting spoken commentary or narration from camcorder videos to transcribe, subtitle, or repurpose as standalone audio content
  • Converting camcorder audio to WAV as a first step before applying noise reduction, EQ, or mastering in professional audio software that requires PCM input

Frequently Asked Questions

Not exactly — the original audio in a MOD file from a JVC or Panasonic camcorder is typically encoded in a lossy format such as Dolby AC-3 or MPEG-1 Layer II. Converting it to PCM WAV preserves that audio exactly as decoded, without introducing any additional compression or quality loss, but it cannot recover detail that was discarded during the original camcorder recording. Think of it as lossless from this point forward, not lossless from the source.
MOD files store audio in compressed formats like AC-3 or MPEG Layer II, which can be 10–20 times smaller than uncompressed PCM. When FFmpeg decodes this audio and writes it as PCM 16-bit WAV, it stores every sample as a raw value with no compression, which is why a few minutes of camcorder audio can produce a WAV file tens of megabytes in size. This is expected and normal — WAV's uncompressed nature is precisely what makes it so universally compatible for editing and broadcast.
Yes. The FFmpeg command uses -c:a pcm_s16le for standard 16-bit PCM, but you can swap this for pcm_s24le (24-bit) or pcm_s32le (32-bit) if you need higher bit depth for professional audio work. However, since the source audio in a MOD file is typically recorded at 16-bit or lower quality by the camcorder hardware, switching to a higher bit depth will increase file size without recovering information that was never captured. For most camcorder footage, pcm_s16le is perfectly sufficient.
Yes. FFmpeg reads the channel layout from the MOD file's audio stream and preserves it in the WAV output by default. JVC and Panasonic consumer camcorders typically record in stereo, so the WAV will be stereo as well. If your specific MOD file happens to contain mono audio (as some older or budget camcorder models recorded), the WAV output will also be mono — no manual channel mapping is needed.
On Linux or macOS, you can batch process all MOD files in a folder with a shell loop: for f in *.MOD; do ffmpeg -i "$f" -vn -c:a pcm_s16le "${f%.MOD}.wav"; done. On Windows Command Prompt, use: for %f in (*.MOD) do ffmpeg -i "%f" -vn -c:a pcm_s16le "%~nf.wav". This applies the exact same conversion logic — stripping video and encoding audio as 16-bit PCM WAV — to every MOD file in the directory.
MOD files can embed limited metadata in the MPEG-PS container, such as recording timestamp information. FFmpeg will attempt to transfer supported metadata tags to the WAV output, but WAV has very limited metadata support compared to formats like MP4 or MKV. Camcorder-specific metadata like GPS coordinates or scene information stored in proprietary JVC or Panasonic structures is generally not preserved in the WAV file. If retaining this metadata is important, consider keeping the original MOD files as your archive alongside the extracted WAV.

Technical Notes

MOD is a proprietary container format used by JVC (under the Everio brand) and Panasonic camcorders, essentially a renamed MPEG-PS file with a .MOD extension. The audio codec inside a MOD file is most commonly Dolby Digital (AC-3) at 192–256 kbps or MPEG-1 Audio Layer II, depending on the camera model and recording mode. FFmpeg's demuxer handles the modified MPEG-PS structure reliably, making MOD files straightforward to process despite their unusual extension. The output PCM WAV uses signed 16-bit little-endian encoding (pcm_s16le), which matches the standard CD-quality specification and is natively supported by virtually all DAWs, NLEs, audio editors, and operating systems without requiring any additional codec installation. One known limitation: some older MOD files have slightly non-standard MPEG-PS headers that can confuse FFmpeg's stream detection — if you encounter errors, adding -analyzeduration 100M -probesize 100M before the -i flag can help FFmpeg correctly identify the audio stream. The -vn flag ensures zero processing time is wasted on the MPEG-2 video decode, making extraction fast even for long recordings.

Related Tools