Video Aspect Ratio Changer

Calculate output dimensions when changing a video's aspect ratio — crop or letterbox/pillarbox — for any common ratio.

Source Video

Source ratio: 16:9

Visual Preview

Source
1920×1080
Output

Output Dimensions

Output Width
1920
px
Output Height
1080
px

FFmpeg Command

ffmpeg -i input.mp4 -vf "crop=1920:1080:0:0" -c:a copy output.mp4
Copied!

Summary

Calculate output dimensions when changing a video's aspect ratio — crop or letterbox/pillarbox — for any common ratio.

How it works

  1. Enter the width and height of your source video (e.g. 1920 x 1080).
  2. Select a target aspect ratio preset or type a custom ratio (e.g. 3:2).
  3. Choose whether to crop the video or add letterbox/pillarbox bars.
  4. The tool shows the exact output dimensions and the offset for centered crop or bar size.
  5. Copy the generated FFmpeg command and run it in your terminal.

Use cases

  • Convert a 16:9 landscape video to 9:16 for Instagram Reels or TikTok.
  • Add letterbox bars to a 16:9 video to fit a 21:9 cinema frame.
  • Crop a 4:3 archive recording to 16:9 for modern widescreen display.
  • Prepare a 1:1 square version of a video for Instagram feed posts.
  • Calculate pillarbox padding when placing a 4:3 source inside a 16:9 container.
  • Find the exact crop offset to keep a subject centered after ratio change.

Frequently Asked Questions

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