CutFast CutFast
Guides

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

Published · By CutFast Team
Add CutFast as a preferred source on Google See more CutFast in Top Stories and AI answers.

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 NameResolutionTotal PixelsTypical Use
4K / UHD3840 x 2160~8.3 millionProfessional shooting, large displays
2K / QHD2560 x 1440~3.7 millionHigh-quality online video
1080p / Full HD1920 x 1080~2.07 millionThe universal standard for web video
720p / HD1280 x 720~0.92 millionBandwidth-sensitive scenarios, mobile
480p / SD854 x 480~0.41 millionLow 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 RatioVisual ShapeTypical Platform / Use Case
16:9Standard landscapeYouTube, web embeds, desktop playback
9:16Standard portraitTikTok, Instagram Reels, YouTube Shorts
1:1SquareInstagram posts, Facebook feed
4:3Classic screenLegacy TV, some presentations
4:5Near-square portraitInstagram feed posts (recommended)
21:9Ultra-wideCinema, 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:

OperationHow It WorksContent ChangeUse Case
ScaleProportionally enlarge or shrink the entire frameNo content lost, but may blur (when upscaling)Lower resolution to reduce file size
CropCut away part of the frameSome content removedChange 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

PlatformContent TypeRecommended ResolutionAspect RatioMax File SizeMax Duration
YouTubeStandard video1920x1080 (1080p)16:9256 GB12 hours
YouTube ShortsShort-form1080x19209:16-60 seconds
TikTokShort-form1080x19209:16287 MB (mobile) / 10 GB (web)10 minutes
Instagram ReelsShort-form1080x19209:164 GB90 seconds
Instagram PostFeed video1080x13504:54 GB60 seconds
Instagram StoriesStories1080x19209:164 GB60 seconds
Twitter/XTweet video1920x108016:9512 MB2 min 20 sec
FacebookFeed video1920x108016:9 / 1:110 GB240 minutes
LinkedInFeed video1920x108016:9 / 1:15 GB10 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

CriteriaCutFastFFmpegHandBrake
Learning CurveVery low (browser)High (CLI)Medium (install)
PrivacyExcellent (local)Excellent (local)Excellent (local)
Batch ProcessingManual, one-by-oneScriptableQueue-based
PrecisionMediumVery highHigh
Platform PresetsYesNo (memorize params)Yes
Cost / WatermarkFree, no watermarkFreeFree
Cross-PlatformAny device with a browserWin/macOS/LinuxWin/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.

View all 35 articles in Online Editing Basics →

Try these AI tools