Convert MOD to M4A — Free Online Tool

Extract and convert the audio track from JVC or Panasonic camcorder MOD files into M4A format, encoding it as AAC audio in an MPEG-4 container. This is ideal for pulling clean audio from camcorder footage for use in iTunes, podcasts, or Apple-compatible media players.

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 essentially MPEG-2 video streams wrapped in a modified MPEG Program Stream container, recorded directly by JVC and Panasonic camcorders. During this conversion, FFmpeg demuxes the MOD container, discards the MPEG-2 video stream entirely using the -vn flag, and re-encodes the audio — typically AC-3 or MPEG audio from the camcorder — into AAC at 128k bitrate. The result is wrapped in an MPEG-4 (.m4a) container, which is the standard audio-only MPEG-4 format popularized by Apple. Because the original audio codec from a MOD file is not natively compatible with M4A, a full audio transcode always occurs — this is not a remux.

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) — your MOD file never leaves your device.
-i input.mod Specifies the input file in MOD format — the camcorder video file recorded by a JVC or Panasonic device. FFmpeg automatically detects the MPEG Program Stream container and identifies the MPEG-2 video and audio streams inside.
-c:a aac Sets the audio codec to AAC (Advanced Audio Coding), which is the required codec for M4A output and the native audio format for Apple devices and iTunes. The camcorder's original audio (typically AC-3 or MPEG Layer 2) is fully decoded and re-encoded into AAC.
-b:a 128k Sets the AAC audio bitrate to 128 kilobits per second. This is a good balance between file size and quality for typical camcorder audio including speech and ambient sound; increase to 192k or 256k for musical performances recorded on the camcorder.
-vn Disables video output entirely, instructing FFmpeg to drop the MPEG-2 video stream from the MOD file. This flag is required because M4A is an audio-only container and cannot store a video track.
output.m4a Defines the output filename and format. The .m4a extension tells FFmpeg to wrap the encoded AAC audio in an MPEG-4 audio container, producing a file that is directly compatible with iTunes, Apple Music, iPhone, and any AAC-capable media player.

Common Use Cases

  • Extract speech or narration recorded on a JVC or Panasonic camcorder to create a podcast episode or voice memo archive without carrying the large video file
  • Pull the audio from a camcorder-recorded ceremony, speech, or event and import it into iTunes or Apple Music for organized playback on iPhone or iPad
  • Convert MOD camcorder audio to M4A for use in iMovie or Final Cut Pro as a standalone audio track, since those apps handle AAC/M4A natively
  • Archive the audio portion of old family camcorder recordings in a compact, widely supported format while discarding the outdated MPEG-2 video stream
  • Extract interview or field-recording audio captured on a camcorder and deliver it to an audio editor who needs a standard M4A/AAC file rather than a raw MOD container
  • Reduce storage footprint of a large MOD video collection by saving only the audio in M4A format when the video content is no longer needed

Frequently Asked Questions

MOD files recorded by JVC and Panasonic camcorders typically contain AC-3 (Dolby Digital) or MPEG Layer-2 audio. Neither of these codecs is supported in the M4A container, so FFmpeg fully re-encodes the audio into AAC during this conversion. The original audio data is decoded and then re-encoded, which means there is one generation of lossy quality loss compared to the camcorder's original recording.
Yes, intentionally. M4A is an audio-only container format and cannot store video streams. The -vn flag in the FFmpeg command explicitly instructs FFmpeg to drop the MPEG-2 video track. If you need to keep the video, you should convert to a format like MP4 or MKV instead. This tool is specifically designed for cases where you only want the audio.
The audio bitrate is controlled by the -b:a flag, which defaults to 128k in this command. You can increase it for better quality — for example, replace 128k with 192k or 256k — or lower it to 96k or 64k to reduce file size. For spoken word content from a camcorder, 128k AAC is generally sufficient, but for music performances recorded on the camcorder, 192k or higher is recommended.
M4A does support chapter markers and iTunes-style metadata tags (such as title, artist, and album), but MOD files do not carry this kind of metadata. The conversion will produce a clean M4A file without embedded chapters or tags. You can add metadata manually after conversion using a tag editor like Mp3tag or through iTunes itself.
MOD files are typically large because they contain MPEG-2 video, which is significantly bulkier than audio alone. By stripping the video and encoding only the audio as AAC at 128k, the output M4A will be dramatically smaller — often 95% to 99% smaller than the original MOD file, depending on the recording length. An hour of MOD footage that might be 7–14 GB will produce an M4A of roughly 55–60 MB.
Yes. On Linux or macOS, you can use a shell loop: for f in *.mod; do ffmpeg -i "$f" -c:a aac -b:a 128k -vn "${f%.mod}.m4a"; done. On Windows Command Prompt, use: for %f in (*.mod) do ffmpeg -i "%f" -c:a aac -b:a 128k -vn "%~nf.m4a". This applies the same conversion settings to every MOD file in the current directory, which is especially useful for processing large camcorder SD card archives.

Technical Notes

MOD is a proprietary camcorder format that stores MPEG-2 video (typically at 720x480 for NTSC or 720x576 for PAL) inside a modified MPEG Program Stream container, making it structurally similar to VOB files found on DVDs. The audio in MOD files is commonly AC-3 at 256k or MPEG-1 Layer 2 audio, neither of which is natively encapsulated in M4A. FFmpeg handles the demuxing of the MOD container without any third-party plugin, but the audio transcode to AAC introduces one generation of lossy compression. AAC at 128k is perceptually transparent for most speech content but may not be sufficient for high-fidelity music recordings — consider 192k or 256k for musical performances. The M4A container uses the .m4a file extension over a standard MP4 container with an audio-only profile, making it directly importable into iTunes, Apple Music, and compatible with gapless playback. Note that M4A does not support multiple audio tracks, so if the MOD file contains a secondary audio channel (some camcorder models record a separate commentary track), only the first audio stream will be encoded.

Related Tools