MPEG to MOV Converter
Pick a free desktop tool and follow the step-by-step commands to convert any MPEG or MPG file to MOV (QuickTime) format.
Choose Your Conversion Tool
All three tools are free. FFmpeg is the fastest; VLC and HandBrake offer a graphical interface.
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 (Command Prompt on Windows) in the folder containing your MPEG file and run one of these commands:
Re-encode to H.264 inside MOV (universal)
ffmpeg -i input.mpeg -c:v libx264 -crf 23 -c:a aac output.mov
ProRes — for Final Cut Pro / iMovie editing
ffmpeg -i input.mpeg -c:v prores_ks -profile:v 3 -c:a pcm_s16le output.mov
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}.mov"; done
macOS / Linux / Git Bash on Windows
3
Check the output
Open output.mov in QuickTime Player or VLC. If playback works, the conversion is complete. Replace input.mpeg with your actual filename.
CRF Quality Reference (H.264)
18
Near-lossless
Large file
Large file
23
Default
Balanced
Balanced
28
Smaller file
Visible loss
Visible loss
MPEG vs MOV — Format Comparison
| Property | MPEG / MPG | MOV (QuickTime) |
|---|---|---|
| Container type | MPEG Program Stream | Apple QuickTime container |
| Common codecs inside | MPEG-1, MPEG-2 video; MP2 audio | H.264, ProRes, DNxHD; AAC audio |
| Device support | DVD players, older hardware | Apple devices, Final Cut Pro, iMovie |
| Typical file size | Larger (older compression) | Varies — ProRes is large; H.264 is compact |
| Editing workflow | Limited NLE support | Native to Final Cut Pro, iMovie, Premiere |
| Browser playback | Not supported natively | Limited (requires QuickTime plugin on some browsers) |
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.mov
Copied!
Summary
Pick a free desktop tool and follow the step-by-step commands to convert any MPEG or MPG file to MOV (QuickTime) format.
How it works
- Choose a free tool: FFmpeg (command-line), VLC (GUI), or HandBrake (GUI).
- Install the tool on Windows, macOS, or Linux using the links provided.
- Follow the step-by-step instructions for your chosen tool.
- Run the conversion command or use the export dialog to produce a MOV file.
- Verify the output plays correctly in QuickTime Player or another media player.
Use cases
- Convert old MPEG/MPG recordings to MOV for editing in Final Cut Pro or iMovie.
- Prepare video files for macOS or iOS devices that prefer QuickTime format.
- Archive home videos from old camcorders in a widely supported container.
- Convert MPEG footage for import into Apple-based video editing workflows.
- Batch-convert a folder of MPG files to MOV using an FFmpeg one-liner.
- Produce MOV files with ProRes or H.264 codec for professional post-production.
Frequently Asked Questions
Last updated: 2026-06-11 ·
Reviewed by Nham Vu