Convert MOD to WAV — Free Online Tool
Extract and convert the audio track from JVC or Panasonic camcorder MOD files into uncompressed WAV audio using PCM 16-bit encoding. This tool strips the MPEG-2 video and decodes the compressed audio into a lossless PCM stream, making it ideal for archiving or editing camcorder footage audio in any DAW or audio editor.
to
FFmpeg Command
Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg
Drop your MOD 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
MOD files 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 demuxes the MOD container to extract the audio stream, decodes it from its compressed format, and re-encodes it to PCM signed 16-bit little-endian (pcm_s16le) — the standard uncompressed audio format used in WAV files. The video stream is discarded entirely. The result is a full-quality, uncompressed WAV file at the same sample rate and channel count as the source audio, with no further generational quality loss introduced by the conversion itself.
What Each Flag Does
| Flag | What it does |
|---|---|
ffmpeg
|
Invokes the FFmpeg command-line tool. In this browser-based tool, the same command runs via FFmpeg.wasm compiled to WebAssembly, so no files leave your device. |
-i input.mod
|
Specifies the input MOD file from your JVC or Panasonic camcorder. FFmpeg automatically identifies it as an MPEG-PS container and locates the audio stream inside, whether it is AC-3 or MPEG Layer II. |
-c:a pcm_s16le
|
Decodes the compressed audio from the MOD file and re-encodes it as signed 16-bit little-endian PCM — the standard uncompressed audio codec for WAV files. This produces a bit-for-bit accurate decoded representation of the source audio with no further lossy compression. |
output.wav
|
Defines the output filename and tells FFmpeg to write a WAV container. The .wav extension triggers FFmpeg to use the WAV muxer, which wraps the pcm_s16le audio stream in a standard RIFF/WAV structure compatible with all major audio software. |
Common Use Cases
- Archiving the audio narration or ambient sound from old family camcorder recordings stored as MOD files before the media degrades
- Importing camcorder audio from a JVC Everio or Panasonic SDR camcorder into a DAW like Audacity or Adobe Audition for noise reduction and mastering
- Extracting interview or event audio recorded on a camcorder to use in a video project where only the audio track is needed
- Converting MOD audio to WAV for compatibility with broadcast systems or hardware samplers that require uncompressed PCM input
- Preparing camcorder audio for transcription software that performs better with uncompressed WAV than compressed formats like AC-3
- Creating a clean, uncompressed audio backup of MOD footage for long-term digital archiving alongside separately encoded video files
Frequently Asked Questions
The MOD file's audio is already lossy-compressed (typically AC-3 or MPEG Layer II), so that initial compression loss cannot be undone. However, the conversion to PCM WAV introduces no additional quality loss — the compressed audio is fully decoded and written as uncompressed PCM. The WAV output will be a perfect representation of whatever quality was captured in the original MOD recording.
MOD files store audio in a compressed format (AC-3 or MPEG audio) that can be 10–20x smaller than uncompressed PCM. WAV with pcm_s16le stores every audio sample as raw 16-bit data with no compression, so a typical stereo 48kHz stream consumes about 5.6 MB per minute. For a one-hour camcorder recording, the WAV audio alone may reach 300–400 MB, even though the original MOD file's audio stream was far smaller.
Yes. FFmpeg automatically detects the sample rate and channel configuration from the MOD file's audio stream and preserves them in the WAV output. Most consumer camcorders record at 48 kHz stereo, and that will be reflected in the WAV without any resampling or downmixing unless you explicitly add flags like -ar or -ac to the command.
Yes. You can replace pcm_s16le with pcm_s24le for 24-bit or pcm_s32le for 32-bit output by modifying the -c:a flag in the command. However, since the MOD's source audio was captured at 16-bit quality by the camcorder's hardware, using a higher bit depth will not recover any additional detail — the output will simply be 16-bit audio stored in a wider container. For archival purposes, 16-bit PCM matches the source fidelity perfectly.
On Linux or macOS, you can use a shell loop: for f in *.MOD; do ffmpeg -i "$f" -c:a pcm_s16le "${f%.MOD}.wav"; done. On Windows Command Prompt, use: for %f in (*.MOD) do ffmpeg -i "%f" -c:a pcm_s16le "%~nf.wav". This processes each MOD file in the current directory and produces a matching WAV file with the same base filename.
WAV files have very limited metadata support compared to the MPEG-PS container used by MOD. FFmpeg will attempt to copy basic metadata tags, but camcorder-specific information such as recording date, GPS data, or scene markers embedded in the MOD container will generally not survive the conversion to WAV. If preserving that metadata matters, consider extracting it separately before converting.
Technical Notes
MOD is a container format used by JVC Everio and Panasonic SDR camcorder lines, essentially an MPEG-PS stream with a .MOD file extension. The audio codec inside a MOD file is typically Dolby Digital (AC-3) at 256 kbps or MPEG-1 Audio Layer II at 384 kbps, depending on the camcorder model and recording mode. FFmpeg handles MOD demuxing natively via its MPEG-PS demuxer without requiring any special flags. The output codec pcm_s16le produces standard signed 16-bit little-endian PCM, which is the most universally compatible WAV variant and is supported by virtually every audio application, DAW, and operating system. Because WAV does not support chapters, subtitle tracks, or multiple audio streams, only the first (or primary) audio track from the MOD file will be written to the output. If a MOD file was recorded with dual-channel mono audio rather than true stereo, this will be preserved as-is in the WAV. The WAV format has a theoretical file size limit of 4 GB due to its 32-bit chunk size header, which equates to approximately 6.7 hours of stereo 48 kHz 16-bit audio — more than sufficient for any single camcorder clip.