Extract Audio from MOD to OGG — Free Online Tool

Extract audio from MOD camcorder recordings and save it as an OGG Vorbis file — an open, royalty-free format ideal for archiving, editing, or streaming. The conversion strips the MPEG-2 video stream entirely and re-encodes the audio using the Vorbis codec at variable bitrate quality, producing a compact, widely-supported audio file from your JVC or Panasonic footage.

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 are MPEG-PS containers storing MPEG-2 video and typically AC-3 or MPEG audio captured directly by JVC and Panasonic camcorders. During this conversion, FFmpeg reads the MOD container, discards the MPEG-2 video stream completely (using the -vn flag), and re-encodes the audio track into Vorbis format wrapped in an OGG container. Because MOD's native audio codec is not compatible with OGG, a full audio transcode is always performed — the audio is decoded from its original format and re-encoded as Vorbis using the libvorbis encoder at quality level 4, which targets roughly 128–160 kbps variable bitrate. The resulting OGG file is audio-only, significantly smaller than the original MOD file, and free of any camcorder-specific container overhead.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg command-line tool, which handles all the reading, decoding, encoding, and container writing for this MOD-to-OGG conversion entirely within your browser via WebAssembly.
-i input.mod Specifies the input MOD file — a MPEG-PS container from a JVC or Panasonic camcorder. FFmpeg reads both the MPEG-2 video stream and the audio stream (typically AC-3 or MPEG audio) from this file.
-vn Disables video output entirely, telling FFmpeg to ignore and discard the MPEG-2 video stream from the MOD file. This is the key flag that makes this an audio extraction — without it, FFmpeg would attempt to include or transcode the video.
-c:a libvorbis Selects the libvorbis encoder to transcode the audio into Vorbis format. Since MOD's native audio codec (AC-3 or MPEG audio) cannot be placed directly into an OGG container, a full re-encode to Vorbis is required here.
-q:a 4 Sets the Vorbis variable bitrate quality level to 4 on a scale of 0–10, targeting approximately 128–160 kbps. This is the default balance between file size and audio quality, appropriate for most camcorder recordings including voice, ambient sound, and general event audio.
output.ogg Defines the output filename and tells FFmpeg to wrap the encoded Vorbis audio stream in an OGG container — an open, royalty-free format developed by Xiph.Org that is well-supported in browsers, Linux, and open-source media players.

Common Use Cases

  • Extract spoken commentary or interview audio from JVC or Panasonic camcorder MOD recordings for use in podcast production or voice editing software
  • Archive the audio track of home video MOD files as open-format OGG Vorbis files, avoiding proprietary codec dependencies for long-term storage
  • Separate ambient sound or field recordings captured with a camcorder in MOD format to use as background audio in video editing or game development projects
  • Extract event audio — such as a wedding speech or concert recording — from a MOD camcorder file for sharing in a format that plays natively in open-source media players like VLC and Audacity
  • Prepare audio from MOD footage for upload to platforms that accept OGG Vorbis, such as certain game engines or web-based audio players using the HTML5 audio element
  • Strip and save the audio from archival MOD recordings stored on old hard drives before the MOD files become difficult to play due to declining MPEG-PS software support

Frequently Asked Questions

Yes, there is a generation of quality loss because this conversion involves transcoding — the original audio (typically AC-3 or MPEG audio inside the MOD file) is decoded and then re-encoded as Vorbis. However, at the default quality level 4, the Vorbis encoder targets a variable bitrate around 128–160 kbps, which is transparent for most camcorder audio. Since MOD recordings are already compressed lossy audio, using a very high Vorbis quality level (8–10) can minimize additional degradation if audio fidelity is critical.
MOD files recorded by JVC and Panasonic camcorders typically store audio as Dolby AC-3 (at 48 kHz) or standard MPEG Layer II audio. Neither of these codecs can be placed directly into an OGG container, so a full transcode to Vorbis is required. Vorbis is generally considered to be comparable in quality to AC-3 at similar bitrates, and it has the advantage of being a fully open, royalty-free format with strong support in open-source software.
MOD files contain a full MPEG-2 video stream, which accounts for the vast majority of the file size — often 95% or more. By extracting only the audio and discarding the video, the resulting OGG file is dramatically smaller. For example, a 1 GB MOD file with an audio track at 128 kbps over one hour might produce an OGG file of only around 55–60 MB.
Adjust the -q:a value to control Vorbis quality. The scale runs from 0 (lowest, roughly 64 kbps) to 10 (highest, roughly 500 kbps), with 4 as the default (around 128–160 kbps). For higher fidelity, use -q:a 7 or -q:a 8. For smaller file sizes where quality is less critical — such as extracting spoken dialogue — -q:a 2 or -q:a 3 is usually sufficient. The full command with a higher quality setting would look like: ffmpeg -i input.mod -vn -c:a libvorbis -q:a 7 output.ogg
The single command shown handles one file at a time, but you can batch-process MOD files on Linux or macOS using a shell loop: for f in *.mod; do ffmpeg -i "$f" -vn -c:a libvorbis -q:a 4 "${f%.mod}.ogg"; done. On Windows Command Prompt, use: for %f in (*.mod) do ffmpeg -i "%f" -vn -c:a libvorbis -q:a 4 "%~nf.ogg". This is particularly useful when digitizing a collection of old camcorder recordings stored as MOD files.
MOD files store minimal metadata in the MPEG-PS container, and FFmpeg will attempt to copy any available tags into the OGG output. However, camera-specific metadata embedded at the hardware level in the MOD container is often not fully parsed by FFmpeg and may not transfer. OGG supports rich Vorbis Comment metadata tags, so you can manually add tags such as artist, title, or date using the -metadata flag in the FFmpeg command if needed.

Technical Notes

MOD is a non-standard MPEG-PS container variant used exclusively by certain JVC (Everio) and Panasonic camcorder lines, and software support for it has narrowed over time as consumer camcorders have moved to AVCHD and MP4. The audio inside MOD files is typically 48 kHz stereo AC-3 at 256 kbps or MPEG Layer II, both of which FFmpeg can decode reliably. The OGG container supports Vorbis, Opus, and FLAC streams; this tool uses libvorbis (the reference Vorbis encoder) as the default because it produces the most universally compatible OGG audio. Opus would offer better quality at low bitrates but has slightly less support in older software. The -q:a parameter for Vorbis is a variable bitrate quality scale, not a fixed bitrate, so actual file sizes will vary depending on audio complexity — recordings with music or crowd noise will be larger than quiet speech-only recordings at the same quality setting. OGG Vorbis is natively supported in Firefox, Chrome, and most open-source audio tools, but has limited native support on iOS and in some Windows applications without additional codecs installed.

Related Tools