Edit recipe
Crop Video to 16:9 with FFmpeg
Center crop a video to a 16:9 frame.
Command
Use this when
- You need a 16:9 output for YouTube, presentations, or players.
- You want a centered crop from a larger frame.
- You can re-encode the video after cropping.
Customize it
Build FFmpeg crop filter commands for dimensions, offsets, and common aspect ratios.
Open Crop VideoParameter breakdown
crop=1280:720:x:y
Sets crop width, height, and offsets.
(in_w-1280)/2
Centers the crop horizontally.
(in_h-720)/2
Centers the crop vertically.
-c:a copy
Keeps the audio stream unchanged.