Converting MOV to MP4 with Resizing Using FFmpeg

Tadashi Shigeoka ·  Thu, October 6, 2022

This post introduces the command to convert MOV to MP4 with resizing using FFmpeg.

FFmpeg

QuickTime Player .mov -> .mp4

Command to convert video files .mov recorded with QuickTime Player’s new screen recording to .mp4 while resizing.

FFmpeg Command for MOV to MP4 Resize & Conversion

ffmpeg -i input.mov -s 1280x720 output.mp4

That’s all about converting MOV to MP4 with 1280x720 resizing using FFmpeg. That’s all from the Gemba.