The Aspect Ratio Decision You Make Before You Record
Every video has an aspect ratio — the proportional relationship between width and height. Get it wrong and you end up with black bars on the sides, stretched distortion, or content cropped off the edges. Get it right and your video displays perfectly on every platform without post-processing gymnastics.
Aspect ratio decisions used to be simple: everything was 16:9 for web, 4:3 for old TV. Now you're publishing to platforms where vertical 9:16 dominates for mobile, 1:1 squares work for Instagram feeds, and cinema projects use 2.39:1. Each format serves a different viewing context, and switching between them mid-project requires knowing exactly what you're trading away.
The Core Aspect Ratios
16:9 — The Horizontal Standard
16:9 (1.78:1) became the universal standard for digital video when HDTVs displaced 4:3 television sets. Today it's the default for:
- YouTube (native upload and playback)
- Vimeo
- Computer monitors
- Laptops
- Modern televisions
- Projectors
- Video calls (Zoom, Teams)
Common resolutions in 16:9:
| Resolution | Name | Pixels |
|---|---|---|
| 3840×2160 | 4K UHD | 8.3 MP |
| 2560×1440 | 1440p / 2K | 3.7 MP |
| 1920×1080 | 1080p (Full HD) | 2.1 MP |
| 1280×720 | 720p (HD) | 0.9 MP |
| 854×480 | 480p | 0.4 MP |
| 640×360 | 360p | 0.2 MP |
For nearly all horizontal video production, 1920×1080 at 30fps is the minimum acceptable quality. 4K acquisition is common now even when delivery is 1080p, because it gives you crop and stabilization headroom.
9:16 — The Vertical Revolution
9:16 is the inverse of 16:9 — a portrait-orientation format built for smartphone screens. It dominates short-form content:
- TikTok (required for full-screen display)
- Instagram Reels (required for full-screen display)
- YouTube Shorts (required)
- Snapchat (native format)
- Facebook Stories and Reels
Common 9:16 resolutions:
| Resolution | Common Name |
|---|---|
| 1080×1920 | Full HD vertical |
| 720×1280 | HD vertical |
There's no graceful way to display 16:9 content in a 9:16 player without significant letterboxing (black bars on the sides) or cropping. Platforms deal with 16:9 uploads in 9:16 contexts by showing a zoomed-in crop of the center — which cuts off the sides of your composition.
Pro tip: If you're shooting content for both YouTube and TikTok/Reels, shoot 4K in 16:9 and crop a 9:16 region in post. A 1080×1920 crop from a 3840×2160 frame uses the center 25% of your frame horizontally — position your subject accordingly.
1:1 — The Square
1:1 square video was popularized by early Instagram, which only allowed square posts. While Instagram now supports other ratios, 1:1 remains a common choice for:
- Instagram feed posts (guaranteed full frame without being cut)
- Some Facebook feed posts
- Profile page video content
Common 1:1 resolutions: 1080×1080, 720×720.
Square video is a good compromise when you need to serve both horizontal (16:9) and vertical (9:16) audiences — cropping a 16:9 source to 1:1 loses the side edges but works reasonably well. Cropping a 9:16 source to 1:1 loses the top and bottom but preserves horizontal composition.
4:3 — The Legacy Format
4:3 was the standard for television from the 1950s to the early 2000s and for early computer monitors. You'll encounter it today with:
- Archival and vintage footage
- Some older security camera systems
- Certain webcams
- Photographic slides (3:2 is similar)
If you're converting old 4:3 footage for modern display, you have three options:
- Letterbox (add black bars on the sides) — preserves everything
- Center crop to 16:9 — loses about 25% of horizontal content
- Pillarbox (keep 4:3 and add decorative side bars) — sometimes done for aesthetic effect
The video crop tool handles 4:3 to 16:9 reframing visually if you want to select exactly which part of the frame to keep.
21:9 and 2.39:1 — Widescreen Cinema
The cinema industry uses several wider-than-16:9 ratios:
| Ratio | Decimal | Common Name | Use Case |
|---|---|---|---|
| 2.39:1 | 2.39 | Scope / Anamorphic | Theatrical films |
| 2.35:1 | 2.35 | Scope (older standard) | Classic films |
| 1.85:1 | 1.85 | Flat / Academy | Documentary, indie |
| 2.76:1 | 2.76 | Ultra Panavision | Selected epics |
On YouTube, cinema aspect ratio videos display with letterboxing (black bars on top and bottom) in a 16:9 player. Ultrawide monitor users on platforms that support 21:9 playback get the full frame.
Some modern ultrawide monitors use 21:9 (2.33:1) or 32:9 (3.56:1). Content created for these formats is still niche.
4:5 — Instagram Portrait
Instagram allows 4:5 (portrait) for feed posts, which shows more of a vertical image than 1:1 while still fitting the feed layout. Dimensions: 1080×1350. This is a practical choice for portrait-oriented content posted to Instagram feed rather than Reels.
Platform Aspect Ratio Requirements
| Platform | Recommended | Also Supported | Avoid |
|---|---|---|---|
| YouTube | 16:9 | 4:3, 1:1 | 9:16 (shows cropped) |
| YouTube Shorts | 9:16 | 1:1 | 16:9 |
| TikTok | 9:16 | 1:1 | 16:9 |
| Instagram Reels | 9:16 | 1:1 | 16:9 |
| Instagram Feed | 1:1 or 4:5 | 16:9 | Vertical extremes |
| Instagram Stories | 9:16 | 1:1 | 16:9 |
| Facebook Feed | 16:9 or 1:1 | 4:5 | Extremes |
| 16:9 | 1:1 | 9:16 | |
| Twitter/X | 16:9 or 1:1 | 4:5 | 9:16 |
| Vimeo | 16:9 | Any | — |
Converting Between Aspect Ratios
Adding Black Bars (Letterbox/Pillarbox)
The non-destructive approach — nothing gets cropped:
# 4:3 to 16:9 (pillarbox — adds bars to sides)
ffmpeg -i input_4x3.mp4 \
-vf "pad=ceil(ih*16/9):ih:(ow-iw)/2:0:black" \
output_16x9.mp4
# 16:9 to 9:16 (letterbox — adds bars to top/bottom)
ffmpeg -i input_16x9.mp4 \
-vf "pad=iw:ceil(iw*16/9):(ow-iw)/2:(oh-ih)/2:black" \
output_9x16.mp4
Cropping to a Different Ratio
Destructive — loses content at the edges. Best when the original has centered composition:
# 16:9 to 1:1 (center crop to square)
ffmpeg -i input_16x9.mp4 \
-vf "crop=ih:ih" \
output_1x1.mp4
# 16:9 to 9:16 (center crop to vertical)
ffmpeg -i input_16x9.mp4 \
-vf "crop=ih*9/16:ih" \
output_9x16.mp4
# 4:3 to 16:9 (center crop to widescreen)
ffmpeg -i input_4x3.mp4 \
-vf "crop=iw:iw*9/16" \
output_16x9.mp4
For visual cropping where you want to choose which part of the frame to keep, ConvertIntoMP4's crop video tool lets you drag the crop region interactively.
Scaling to a Target Resolution
# Scale to 1080p maintaining 16:9
ffmpeg -i input.mp4 -vf "scale=1920:1080" output.mp4
# Scale to 1080×1920 (9:16) maintaining aspect, pad to fill
ffmpeg -i input.mp4 \
-vf "scale=1080:1920:force_original_aspect_ratio=decrease,pad=1080:1920:(ow-iw)/2:(oh-ih)/2:black" \
output_vertical.mp4
Why Pixels Aren't Always Square
A complication for legacy video formats: some use non-square pixels (anamorphic video). Standard definition video from cameras and DVDs often used 720×480 or 720×576 pixels, but with a pixel aspect ratio (PAR) of 1.0911 (for 16:9) or 0.9 (for 4:3). Display correctly, these look like 16:9 widescreen. Read the raw pixel dimensions, they look like something odd.
FFmpeg handles this with the -vf "setsar=1" or -vf "scale=1920:-1" filter to re-sample to square pixels.
When converting DVDs, VHS captures, or other SD footage, always check for non-square pixel encoding:
ffprobe -v quiet -print_format json -show_streams input.mp4 | grep -E "sample_aspect|display_aspect"
If sample_aspect_ratio is not 1:1, you'll want to scale to square pixels before using the video in modern tools.
The Reframing Workflow for Multi-Platform Publishing
For creators publishing the same content across platforms, a common workflow:
- Record in 4K 16:9 — Maximum source quality
- Edit in 16:9 timeline — Primary format for YouTube/Vimeo
- Export 16:9 for YouTube — 1920×1080 or 3840×2160
- Create 9:16 version — Crop from center, or reframe using a second edit
- Create 1:1 version — Crop from center of 9:16 or from 16:9
The 4K → 1080p workflow is key: a 9:16 1080×1920 crop from a 3840×2160 4K frame uses every pixel of the 1080-wide vertical strip without upscaling.
For batch-converting multiple videos to different aspect ratios, the video converter hub handles format conversion and resolution scaling in one step.
Aspect Ratio and File Size
Aspect ratio itself doesn't determine file size — resolution (total pixels) and codec do. But two videos at the same resolution can have very different aspect ratios:
- 1920×1080 (16:9): 2,073,600 pixels
- 1080×1920 (9:16): same 2,073,600 pixels
- 1080×1080 (1:1): 1,166,400 pixels — 44% fewer pixels, proportionally smaller file
Switching from 16:9 to 1:1 at the same horizontal resolution reduces pixel count significantly, which usually means smaller files at the same quality settings.
For all video compression matters, the video compression settings guide covers bitrate, codec selection, and quality settings in depth.
Frequently Asked Questions
What happens if I upload a 9:16 video to YouTube?
YouTube adds black bars on the sides on desktop and most TV apps to maintain the 9:16 ratio within a 16:9 player. On mobile, some YouTube versions show a vertical player for 9:16. For YouTube Shorts, 9:16 is required and displays correctly.
Can I change a video's aspect ratio after recording?
Yes, but you're either cropping (losing content) or adding black bars (adding content). You can't change aspect ratio and keep all the original framing without one of these tradeoffs. The crop video tool handles the cropping side; the FFmpeg pad filter handles black bars.
What aspect ratio should I record in for TikTok?
9:16 is ideal. If your camera doesn't support 9:16, record in 16:9 and plan your composition keeping in mind that a vertical crop from the center will lose the left and right edges. Keep your subject centered horizontally.
Does aspect ratio affect video quality?
No — aspect ratio describes shape, not quality. Quality is determined by resolution (pixel count), bitrate, and codec. A 9:16 video at 1080×1920 has the same pixel density as a 16:9 video at 1920×1080.
What's the difference between 2.35:1 and 2.39:1?
Both are "scope" aspect ratios commonly associated with cinematic widescreen. The 2.35:1 ratio was the original anamorphic standard; 2.39:1 (sometimes written 2.4:1) became standard in 1970 and is what most modern cinema cameras use. The difference is barely visible to viewers — both represent that distinctly wide cinematic look.
Choosing the Right Ratio for Your Project
The right aspect ratio isn't universal — it's determined by your delivery target:
- YouTube channel: 16:9, 1920×1080 minimum
- TikTok / Reels / Shorts: 9:16, 1080×1920
- Instagram feed: 1:1 or 4:5
- Corporate presentation: 16:9 (matches projectors and screens)
- Cinematic look: 2.39:1 (with letterboxing for web delivery)
- Multi-platform: Shoot 4K 16:9, reframe in post
Understanding these ratios makes the difference between content that looks deliberate and professional and content that has bars in unexpected places or cuts off the edges of your frame. The full video resolution guide covers resolution selection alongside aspect ratio for complete video format decisions.



