CutFast CutFast
Guides

How to Resize Video: The Complete Guide to Resolution, Aspect Ratio & Platform Optimization

Published · By CutFast Team

Why You Need to Resize Video

You shot a 16:9 landscape video and want to post it on TikTok (which expects 9:16 portrait). Your camera exported 4K footage at 2 GB, but you only need 1080p for a website embed. You sent a 1080p video in a group chat and everyone complained about slow loading.

These are classic “video size mismatch” scenarios. Resizing video is one of the most common video processing tasks, yet many people confuse resolution, aspect ratio, and cropping — ending up with stretched faces or missing content.

This guide covers the fundamentals, provides a platform-specific size reference table, and walks through three methods to resize your videos efficiently.

Core Concepts: Resolution vs Aspect Ratio vs Cropping

Resolution

Resolution is the pixel count of your video frame, expressed as “width x height.”

Common Name Resolution Total Pixels Typical Use
4K / UHD 3840 x 2160 ~8.3 million Professional shooting, large displays
2K / QHD 2560 x 1440 ~3.7 million High-quality online video
1080p / Full HD 1920 x 1080 ~2.07 million The universal standard for web video
720p / HD 1280 x 720 ~0.92 million Bandwidth-sensitive scenarios, mobile
480p / SD 854 x 480 ~0.41 million Low bandwidth, previews

Lowering resolution (e.g., 4K to 1080p) dramatically reduces file size — total pixels drop by 75%, and file size typically shrinks by 50-70%.

Aspect Ratio

Aspect ratio is the proportional relationship between width and height. It determines the “shape” of your video:

Aspect Ratio Visual Shape Typical Platform / Use Case
16:9 Standard landscape YouTube, web embeds, desktop playback
9:16 Standard portrait TikTok, Instagram Reels, YouTube Shorts
1:1 Square Instagram posts, Facebook feed
4:3 Classic screen Legacy TV, some presentations
4:5 Near-square portrait Instagram feed posts (recommended)
21:9 Ultra-wide Cinema, theatrical content

Key insight: Resolution and aspect ratio are different things. Both 1920x1080 and 1280x720 share the 16:9 aspect ratio but have different resolutions. When resizing, be clear about whether you are changing resolution, aspect ratio, or both.

Scale vs Crop

When you need to change video dimensions, there are two fundamentally different operations:

Operation How It Works Content Change Use Case
Scale Proportionally enlarge or shrink the entire frame No content lost, but may blur (when upscaling) Lower resolution to reduce file size
Crop Cut away part of the frame Some content removed Change aspect ratio (e.g., 16:9 to 9:16), remove edges

Most “resize” tasks are actually a combination of both. For example, converting a 1920x1080 landscape video to 1080x1920 portrait requires cropping the sides first, then adjusting the resolution.

Platform Video Size Recommendations

Quick Reference Table

Platform Content Type Recommended Resolution Aspect Ratio Max File Size Max Duration
YouTube Standard video 1920x1080 (1080p) 16:9 256 GB 12 hours
YouTube Shorts Short-form 1080x1920 9:16 - 60 seconds
TikTok Short-form 1080x1920 9:16 287 MB (mobile) / 10 GB (web) 10 minutes
Instagram Reels Short-form 1080x1920 9:16 4 GB 90 seconds
Instagram Post Feed video 1080x1350 4:5 4 GB 60 seconds
Instagram Stories Stories 1080x1920 9:16 4 GB 60 seconds
Twitter/X Tweet video 1920x1080 16:9 512 MB 2 min 20 sec
Facebook Feed video 1920x1080 16:9 / 1:1 10 GB 240 minutes
LinkedIn Feed video 1920x1080 16:9 / 1:1 5 GB 10 minutes

Resolution Selection Strategy

  • Default to 1080p: In 2026, 1080p remains the gold standard for web video. Unless your audience watches primarily on large screens (TVs), 4K provides minimal perceptual improvement while multiplying file size
  • Use 1080px width for portrait content: Whether 9:16 or 4:5, maintaining 1080 pixels of width ensures clarity on phone screens
  • Use 720p for bandwidth-sensitive scenarios: Web embeds, messaging apps — 720p is the optimal balance between size and quality

CutFast provides free online video resizing tools that support both resolution scaling and aspect ratio cropping, with all processing done locally in your browser.

Resize Resolution (Scale)

  1. Open cutfa.st/features/resize
  2. Upload your video file
  3. Select target resolution (e.g., 1080p, 720p, 480p) or enter custom dimensions
  4. Choose scaling mode (maintain aspect ratio / stretch to fill / add letterbox)
  5. Process and download

Change Aspect Ratio (Crop)

  1. Open cutfa.st/features/crop
  2. Upload your video
  3. Select target aspect ratio (16:9 / 9:16 / 1:1 / 4:5 / custom)
  4. Drag the crop box to adjust the retained region
  5. Process and download

Resize MP4 Files Specifically

If you need to resize MP4 files specifically, use cutfa.st/features/resize-mp4 — this tool is optimized for the MP4 format.

Why CutFast

  • Browser-local processing: Video files never leave your device — private and secure
  • Free, no watermark: Resized output is completely clean
  • Multi-format support: MP4, MKV, WebM, MOV, AVI, and more
  • Presets + custom: Common platform presets plus arbitrary custom dimensions

Method 2: FFmpeg CLI

FFmpeg is the most powerful command-line video processing tool, ideal for technical users or batch processing scenarios.

Scale Resolution

# Scale to 1280x720 (maintain aspect ratio, auto-calculate height)
ffmpeg -i input.mp4 -vf "scale=1280:-2" -c:a copy output_720p.mp4

# Scale to 1080px width, auto height
ffmpeg -i input.mp4 -vf "scale=1080:-2" -c:a copy output_1080w.mp4

# Exact resolution
ffmpeg -i input.mp4 -vf "scale=1920:1080" -c:a copy output_1080p.mp4

-2 tells FFmpeg to auto-calculate that dimension to maintain the aspect ratio while ensuring the result is even (codec requirement).

Crop the Frame

# Center-crop to 1080x1080 (square)
ffmpeg -i input.mp4 -vf "crop=1080:1080" -c:a copy output_square.mp4

# Crop to 9:16 portrait (extract 607x1080 from 1920x1080)
ffmpeg -i input.mp4 -vf "crop=607:1080" -c:a copy output_vertical.mp4

# Crop then scale
ffmpeg -i input.mp4 -vf "crop=1080:1080,scale=720:720" -c:a copy output.mp4

Add Letterbox / Pillarbox

# Place 4:3 video inside 16:9 frame with side bars
ffmpeg -i input_4x3.mp4 -vf "scale=1440:1080,pad=1920:1080:(ow-iw)/2:(oh-ih)/2" -c:a copy output_16x9.mp4

# Place 16:9 video inside 9:16 frame with top/bottom bars
ffmpeg -i input.mp4 -vf "scale=1080:608,pad=1080:1920:(ow-iw)/2:(oh-ih)/2" -c:a copy output_9x16.mp4

FFmpeg Pros and Cons

Pros: Precise control over every parameter, scriptable for batch processing, completely free and open-source

Cons: Requires installation and CLI knowledge, no preview, high parameter memorization cost

Method 3: HandBrake

HandBrake is a free, open-source video transcoder with a graphical interface — suited for users who want fine control without writing commands.

Steps

  1. Download and install HandBrake (https://handbrake.fr)
  2. Open your video file
  3. Set target resolution in the Dimensions tab
  4. Adjust Cropping parameters
  5. Choose an encoding preset (e.g., Fast 1080p30)
  6. Click Start Encode

HandBrake Pros and Cons

Pros: Visual interface, rich presets, batch queue processing

Cons: Requires desktop installation, no real-time crop preview, learning curve for beginners

Three Methods Compared

Criteria CutFast FFmpeg HandBrake
Learning Curve Very low (browser) High (CLI) Medium (install)
Privacy Excellent (local) Excellent (local) Excellent (local)
Batch Processing Manual, one-by-one Scriptable Queue-based
Precision Medium Very high High
Platform Presets Yes No (memorize params) Yes
Cost / Watermark Free, no watermark Free Free
Cross-Platform Any device with a browser Win/macOS/Linux Win/macOS/Linux

Recommendation:

  • Processing 1-3 videos quickly → CutFast
  • Batch processing dozens or hundreds → FFmpeg
  • Need fine control without the CLI → HandBrake

Important Considerations When Resizing Video

1. Never Upscale Resolution

Scaling 720p video up to 1080p does not add real detail — it just interpolates between existing pixels, making the image blurrier. Video resizing should always be downscale only.

2. Watch Out for Aspect Ratio Distortion

Force-scaling a 16:9 video to 1:1 without cropping first will squish people into short, wide shapes. The correct approach: crop to the target aspect ratio first, then scale to target resolution.

3. Re-encoding Costs Quality

Every re-encode introduces some quality loss. If you need multiple adjustments, complete all changes in a single operation (crop + scale + encode) to avoid cumulative degradation.

4. Keep Dimensions Even

Most video codecs (H.264, H.265) require both width and height to be even numbers. When setting custom resolutions, ensure values are even (1920x1080 is fine; 1921x1079 will throw an error).

FAQ

What is the difference between resizing and compressing a video?

Resizing changes the video’s resolution (pixel count) and aspect ratio. Compressing changes the bitrate and encoding efficiency. Both reduce file size, but through different mechanisms. Lowering resolution is one of the most straightforward ways to shrink a file.

Does downscaling 4K to 1080p lose quality?

On normal display devices (phones, laptop screens), the visual difference between 1080p and 4K is minimal. Downscaling itself does not introduce noticeable quality loss — it actually reduces file size dramatically while preserving perceived quality.

How do I convert a landscape video to portrait for TikTok?

Two approaches: (1) Crop the center of the frame to 9:16 — this loses the left and right edges; (2) Shrink the landscape video and place it at the top, adding a blurred background or text below. CutFast’s crop tool supports the first approach at cutfa.st/features/crop.

My file got larger after resizing — what happened?

Possible causes: (1) The output codec is less efficient than the source (e.g., original was H.265, output became H.264); (2) Output bitrate was set too high. Consider using reasonable encoding parameters when resizing, or run an additional compression pass.

Is it safe to resize video online?

Most online tools upload your video to a server. If your content is sensitive, use CutFast — it processes entirely in your browser, and files are never sent to any third-party server.

How do I batch resize multiple videos?

For fewer than 5 files, CutFast handles them one at a time. For large batches (dozens to hundreds), FFmpeg scripting is the most efficient method — a simple shell loop can process an entire folder.

Summary

Resizing video seems simple, but doing it well requires understanding the differences between resolution, aspect ratio, scaling, and cropping. Key takeaways:

  1. Check your target platform’s size requirements using the reference table in this guide
  2. Distinguish between scaling and cropping: Change resolution with scaling, change aspect ratio with cropping
  3. Only downscale, never upscale — upscaling does not add real detail
  4. Complete all changes in a single operation to avoid cumulative quality loss from multiple re-encodes

For occasional resizing of a few videos, CutFast is the fastest path — open your browser, upload, choose your size, download. No installation, no sign-up, no watermark, fully private.