Convert MOD to MPEG — Free Online Tool
Convert MOD camcorder footage from JVC or Panasonic devices into MPEG format using MPEG-2 video and MP2 audio encoding. This conversion repackages the underlying MPEG-2 video stream into a standard MPEG-PS container with broad legacy compatibility, making your camcorder recordings playable on older hardware, DVD players, and broadcast-oriented systems.
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 are essentially MPEG-2 video stored in a proprietary modified MPEG-PS container used by JVC and Panasonic camcorders. During this conversion, FFmpeg decodes and re-encodes the MPEG-2 video stream using the mpeg2video codec and transcodes the audio to MP2 (MPEG-1 Audio Layer II), the standard audio codec for MPEG-2 broadcast and DVD applications. Because the source video is already MPEG-2 based, quality loss from the video re-encode is minimal when using the default quality setting of -q:v 2 (near the top of the 1–31 scale). The output is a standards-compliant .mpeg file readable by virtually any legacy media player, DVD authoring tool, or broadcast system that supports MPEG-PS.
What Each Flag Does
| Flag | What it does |
|---|---|
ffmpeg
|
Invokes the FFmpeg multimedia processing engine, which handles reading the proprietary MOD container, decoding the MPEG-2 video and audio streams, and writing the output MPEG-PS file. |
-i input.mod
|
Specifies the input MOD file — the proprietary camcorder format used by JVC and Panasonic devices, which wraps MPEG-2 video in a modified MPEG-PS container. FFmpeg recognizes this container automatically despite its non-standard extension. |
-c:v mpeg2video
|
Sets the output video codec to MPEG-2, the standard video compression format for MPEG-PS containers and DVD. Since the MOD source is already MPEG-2, this re-encodes with a compatible codec, minimizing generational quality loss compared to a cross-codec transcode. |
-c:a mp2
|
Encodes the audio as MP2 (MPEG-1 Audio Layer II), the standard audio format for MPEG-PS and broadcast MPEG-2 applications. This replaces the AC-3 or other audio typically found in MOD files with a format universally accepted by legacy players and DVD authoring tools. |
-q:v 2
|
Sets the MPEG-2 video quality using the quantizer scale, where 1 is maximum quality and 31 is minimum. A value of 2 produces near-maximum quality output, preserving the visual fidelity of the original camcorder footage with a high bitrate and minimal compression artifacts. |
-b:a 192k
|
Sets the MP2 audio bitrate to 192 kilobits per second, which is the broadcast-standard bitrate for MPEG-2 MP2 audio and provides clear, faithful reproduction of the camcorder's original audio track. |
output.mpeg
|
Defines the output filename with the .mpeg extension, which signals FFmpeg to write a standard MPEG-PS container. This format is recognized by virtually all legacy media players, DVD authoring applications, and broadcast systems. |
Common Use Cases
- Preparing JVC or Panasonic camcorder footage for import into legacy DVD authoring software like DVD Architect or Nero Vision that requires standard MPEG-2/MP2 streams
- Archiving old home videos recorded on MOD-based camcorders into a broadly compatible MPEG format that can be played without proprietary software
- Submitting camcorder footage to broadcast or community television stations that require MPEG-2 video with MP2 audio in an MPEG-PS container
- Enabling playback of MOD recordings on standalone DVD players or set-top boxes that cannot read the MOD container but support standard MPEG files
- Converting camcorder clips for use in older non-linear editing systems (NLEs) that accept MPEG-2 natively but do not recognize the MOD file extension
- Stripping the JVC/Panasonic-specific container wrapper from footage to produce a clean MPEG file for long-term digital storage or sharing on legacy platforms
Frequently Asked Questions
Because your MOD file already contains MPEG-2 video, re-encoding to mpeg2video introduces only a second generation of lossy compression rather than a cross-codec transcode. Using the default -q:v 2 setting — near the highest quality on FFmpeg's 1–31 MPEG quantizer scale — keeps quality degradation minimal and often imperceptible for typical camcorder footage. If you need to avoid any re-encode quality hit, note that direct stream copying is not straightforward here because the container repackaging still requires FFmpeg to process the stream.
MOD camcorder files typically carry Dolby AC-3 (or occasionally MPEG audio) in their audio tracks. The output MPEG format uses MP2 (MPEG-1 Audio Layer II) as its default audio codec because MP2 is the standard for MPEG-PS containers and is required for DVD and broadcast compatibility. This means the audio is always transcoded regardless of the source, but at the default 192k bitrate the quality difference is negligible for speech and typical camcorder audio.
The -q:v flag sets the quantizer scale for MPEG-2 video encoding, where 1 is the highest quality (largest file) and 31 is the lowest quality (smallest file). The default value of 2 is near-maximum quality and is appropriate for preserving camcorder footage. To reduce file size at the cost of some quality, you could change -q:v 2 to -q:v 5 or higher in the command. For archival purposes, keeping it at 1 or 2 is recommended.
You can batch convert all MOD files in a folder on Linux or macOS with a shell loop: `for f in *.MOD; do ffmpeg -i "$f" -c:v mpeg2video -c:a mp2 -q:v 2 -b:a 192k "${f%.MOD}.mpeg"; done`. On Windows Command Prompt, use: `for %f in (*.MOD) do ffmpeg -i "%f" -c:v mpeg2video -c:a mp2 -q:v 2 -b:a 192k "%~nf.mpeg"`. This is especially useful when dealing with a full memory card of camcorder recordings.
A standard MPEG file with MPEG-2 video and MP2 audio in an MPEG-PS container is one of the most broadly compatible formats for legacy hardware. Most standalone DVD players and set-top boxes that support DivX or MPEG playback from USB will recognize these files. However, for burning to a DVD disc that plays in any player, you would also need to run the MPEG through DVD authoring software to create proper VIDEO_TS structure, as the raw MPEG file alone does not constitute a DVD.
MOD files store camcorder-specific metadata in a proprietary way, and MPEG-PS containers have very limited metadata support. During this conversion, most camcorder-embedded metadata such as recording date, GPS data, or scene information will not be preserved in the output MPEG file. If retaining metadata is important, consider also saving the original MOD files alongside the converted MPEG outputs, or using a format with richer metadata support such as MP4.
Technical Notes
MOD is a thinly wrapped MPEG-PS format: JVC and Panasonic camcorders use it to store MPEG-2 video (typically at 720x480 or 720x576 for NTSC/PAL) with AC-3 or MPEG audio. The output MPEG-PS container with mpeg2video and MP2 audio is one of the oldest and most universally supported digital video formats, making it ideal for legacy compatibility. The -q:v scale for mpeg2video is an inverse quality scale (lower = better), distinct from the CRF scale used by H.264/H.265 encoders. At -q:v 2, the encoder produces high-bitrate output that closely preserves source detail. One known limitation is that MPEG-PS does not support multiple audio tracks, subtitles, or chapters — all of which are absent from the MOD source anyway, so no data is lost in that regard. File sizes for the output MPEG can be large at high quality settings, so users with files over 1GB should use the displayed FFmpeg command locally rather than the browser-based tool.