MPEG to M4V Converter

Pick a free desktop tool and follow the step-by-step commands to convert any MPEG or MPG file to M4V for Apple devices and iTunes.

Choose Your Conversion Tool

Both tools are free. FFmpeg is the fastest; HandBrake offers a graphical interface with hardware acceleration.

1

Install FFmpeg

  • Windows: Download from ffmpeg.org/download.html, extract, and add the bin/ folder to your PATH.
  • macOS: Run brew install ffmpeg in Terminal.
  • Linux: Run sudo apt install ffmpeg (Debian/Ubuntu) or sudo dnf install ffmpeg (Fedora).
2

Run the conversion command

Open a terminal in the folder containing your MPEG file and run one of these commands:

Re-encode to H.264 + AAC (recommended for Apple devices)
ffmpeg -i input.mpeg -c:v libx264 -crf 23 -c:a aac output.m4v
Near-lossless quality (larger file)
ffmpeg -i input.mpeg -c:v libx264 -crf 18 -c:a aac output.m4v
Batch convert all .mpg files in a folder
for f in *.mpg; do ffmpeg -i "$f" -c:v libx264 -crf 23 -c:a aac "${f%.mpg}.m4v"; done macOS / Linux / Git Bash on Windows
3

Check the output

Open output.m4v in QuickTime Player or iTunes. If it plays, the conversion is complete. Replace input.mpeg with your actual filename.

CRF Quality Reference

18
Near-lossless
Large file
23
Default
Balanced
28
Smaller file
Visible loss

MPEG vs M4V — Format Comparison

Property MPEG / MPG M4V
Container type MPEG Program Stream MPEG-4 Part 12 (Apple variant of MP4)
Common codecs inside MPEG-1, MPEG-2 video; MP2 audio H.264, H.265; AAC audio
Apple device support Limited — requires conversion Native — iTunes, QuickTime, iPhone, iPad, Apple TV
DRM support None Optional Apple FairPlay (purchased content only)
Typical file size Larger (older compression) Smaller (H.264 is 2–4× more efficient)
Cross-platform playback Not widely supported on modern devices Plays in VLC, MPC-HC, and any MP4-compatible player

FFmpeg Command Builder

Fill in the fields below to generate a ready-to-run FFmpeg command.

ffmpeg -i video.mpeg -c:v libx264 -crf 23 -c:a aac video.m4v
Copied!

Summary

Pick a free desktop tool and follow the step-by-step commands to convert any MPEG or MPG file to M4V for Apple devices and iTunes.

How it works

  1. Choose a free tool: FFmpeg (command-line) or HandBrake (GUI).
  2. Install the tool on Windows, macOS, or Linux using the links provided.
  3. Follow the step-by-step instructions for your chosen tool.
  4. Run the conversion command or use the export dialog to produce an M4V file.
  5. Verify the output plays correctly in iTunes or QuickTime Player.

Use cases

  • Convert old MPEG/MPG recordings to M4V for playback on iPhone, iPad, or Apple TV.
  • Import MPEG home videos into iTunes or the Apple TV app.
  • Prepare videos for syncing to iOS devices via the Finder or iTunes.
  • Reduce file size by re-encoding MPEG-1/MPEG-2 to H.264 inside M4V.
  • Batch-convert a folder of MPG files to M4V using an FFmpeg one-liner.
  • Archive camcorder footage in an Apple-compatible container format.

Frequently Asked Questions

Last updated: 2026-06-11 · Reviewed by Nham Vu