Resize video online

Change your video resolution for any platform or screen size. Pick a preset or enter custom dimensions. No upload needed.

Free forever
No file uploads
No watermarks
Works offline

What this tool does

Every platform wants a different resolution. TikTok and Reels want vertical, YouTube wants widescreen, and some players just need something smaller to load fast. Resize video applies the right dimensions with presets built around the platforms people actually post to.

Why use it

Resolution affects more than visual quality: it directly controls file size, upload time, processing speed in editing software, and whether a video meets a platform's dimensional requirements. TikTok and Instagram Reels require 9:16 vertical video. YouTube thumbnails and embeds are sized for 16:9. A video shot at 4K on a mirrorless camera is 4 to 6 times larger than the 1080p version a social platform will actually display.

Downsizing to the delivery resolution before uploading also avoids the double-compression problem: if you upload a 4K video to a platform that encodes it to 1080p, the platform's encoder runs on top of your encoder's work. Exporting at 1080p and uploading that directly typically produces a cleaner result.

How it works under the hood

For resolution presets, the tool uses scale=-2:H where H is the target height (2160, 1080, 720, 480, or 360). The -2 on the width tells FFmpeg to compute the width automatically while keeping it divisible by 2 (required by H.264). This preserves the original aspect ratio exactly without any cropping or letterboxing.

For platform presets that require a specific aspect ratio (TikTok, Instagram Reels at 1080x1920, Instagram Square at 1080x1080), the filter becomes scale=W:H:force_original_aspect_ratio=increase,crop=W:H. This first scales the video up until both dimensions meet the target, then crops the excess from the center. The tool warns you when a platform preset will crop your video. For custom width input, the tool rounds to the nearest even number before passing to FFmpeg. All outputs use libx264 at CRF 23 with the ultrafast preset and AAC audio at 128 Kbps.

Tips and best practices

Resizing up (upscaling) does not add detail: it just interpolates pixels that were never captured. If your source is 720p and you resize to 1080p, the output will be a blurry 1080p, not a sharp one. Only downscale unless the destination platform requires a minimum resolution.

For the platform presets that crop, compose your shot with the crop in mind. Vertical (9:16) presets cut roughly 44 percent of the width from a standard 16:9 landscape video. Subjects near the left or right edges of the frame will be lost.

Browser tool vs alternatives

Platform-specific export presets are a standard feature of desktop editors, but they require a project setup. FFmpeg can resize with a single command, but computing the exact scale and crop arguments for a specific platform aspect ratio (and remembering to keep dimensions even) requires looking up the math every time. This tool has the correct vf arguments for each platform preset built in and runs them locally with no setup.

Read the guide

How to Resize Video for TikTok, YouTube, and Instagram

What to do next

Frequently Asked Questions

What resolutions are available?

1080p, 720p, and 4K presets, matched to common platform requirements.

Does resizing change the aspect ratio?

Platform presets are matched to that platform's typical aspect ratio, so a TikTok preset targets vertical and a YouTube preset targets widescreen.

Will resizing crop or stretch my video?

This depends on how the source footage compares to the target aspect ratio.

Does resizing reduce quality?

Downscaling to a smaller resolution usually looks clean. Upscaling to something larger than the original won't add real detail, it just stretches existing pixels.

What formats are supported?

MP4, MOV, AVI, WEBM, and MKV.

Is there a file size limit?

500MB.

Does it work on mobile?

Yes.

Will there be a watermark?

No.

Last updated: 2026-09-05