A free online video cropper removes unwanted areas from a video by re-encoding only a user-defined rectangular region of each frame, and the result is a WebM file you can download without uploading the source to a server. The Video Cropper tool on this site performs that operation entirely inside the browser using built-in decoding and encoding APIs, which means your original footage stays on your own computer while the crop is applied. Because the crop is defined by exact X, Y, width, and height values measured in pixels, you can target a precise region such as a subject, a watermark, or a letterbox band rather than guessing with a drag-and-drag rectangle. The output is a finite-duration WebM clip that mirrors the source playback time, so a 30-second input produces a 30-second output with only the chosen rectangle visible in every frame.

Most people land on this task because they want to remove a static distraction from a clip, reframe a horizontal recording for a vertical feed, or tighten the edges of a screen capture. Whatever the reason, the underlying requirement is the same: cut away pixels around the edges while keeping the picture stable and centered. Doing this by hand in a desktop editor costs time and disk space, and many free online services require an upload first, which is slow on large files and raises privacy concerns for unreleased content. A fully in-browser cropper sidesteps both problems at once.

crop video for free online
crop video for free online

Why Browser-Based Cropping Beats Upload-Based Tools

Upload-based croppers stream your video to a remote server, wait for a worker process to re-encode the result, and then stream it back. That round trip is limited by your upload bandwidth, the server's queue, and the service's file-size cap. For a 500 MB phone recording, the upload alone can take longer than the edit itself, and many free services refuse files above 200 MB or 500 MB.

The Video Cropper instead reads the file with the browser's decoder, draws each frame onto an internal canvas, copies only the requested rectangle, and hands the encoded chunks back to you as a WebM blob. There is no network hop for the video data, no server-side queue, and no upload cap. The only practical limit is what the browser can decode, which covers the vast majority of MP4, MOV, and WebM files produced by phones and consumer cameras.

There is also a privacy angle worth stating plainly: an unreleased product demo, a personal recording, or any clip you do not want stored on a third-party server should never leave your machine. A local pipeline gives you that by construction.

What You Need Before You Start

Before opening the tool, confirm three things so the crop does not stall or produce a broken file.

  • A browser that supports WebM video encoding. Modern Chromium-based browsers (Chrome, Edge, Brave, Opera) and Firefox handle this reliably. Safari's support has improved but can lag on certain codecs.
  • A source file the browser can decode. Common MP4 and MOV files with H.264 or H.265 video usually work, as do standard WebM files. Very high-bitrate 4K files or unusual containers may exceed the browser's decoder.
  • The source dimensions in pixels. You will need to know the full width and height of the source so your crop rectangle stays inside every frame.

If you are unsure of the source dimensions, right-click the file on most operating systems to view its properties, or open it briefly in a media player that shows technical details.

How to Crop a Video for Free Online

  1. Open the Video Cropper tool and choose your source file from the local file picker. The tool reads the file with the browser's decoder and displays the source dimensions once decoding finishes. Wait for those dimensions to appear before continuing, because entering a rectangle before the source is ready can apply values to a placeholder frame.
  2. Enter whole-pixel crop values. Provide an X offset, a Y offset, a width, and a height, all as integers. The rectangle must stay inside every frame, so X plus width must not exceed the source width, and Y plus height must not exceed the source height. Negative values are not valid here.
  3. Pick a target that matches your use case. For a landscape source of 1920 x 1080, cropping to X=240, Y=0, width=1440, height=1080 keeps the central 1440 pixels wide and produces a 4:3 output. For a square crop on a vertical clip, set width and height to the same value centered on the frame.
  4. Select Crop video to begin processing. The browser re-encodes the clip in real time. Keep the tab open and the window focused, and avoid heavy multitasking that starves the encoder of CPU time.
  5. Download the resulting WebM when the tool offers the file. The download contains the cropped clip at the requested rectangle, with the same duration as the source.
  6. Review the output end to end. Play the downloaded WebM from the first frame to the last and watch the edges. Confirm the crop window covers the area you wanted, that nothing important sits just outside the chosen rectangle, and that no artifacts appear at the boundaries.

If the source is a 1920 x 1080 recording and you want a 1:1 square centered on the frame, a safe choice is X=420, Y=0, width=1080, height=1080, because 420 plus 1080 equals the source width of 1920. That rectangle drops 420 pixels from the left edge and 420 from the right edge and keeps the full vertical range of the picture.

Picking the Right Crop Rectangle

The rectangle you choose controls both what stays in frame and what the output aspect ratio becomes. The table below lists common targets and the kind of source they fit. Use it as a starting point, then adjust the values to the exact dimensions of your file.

Target use Aspect ratio Typical output size Source guidance
Landscape feed (YouTube, web embed) 16:9 1920 x 1080 or 1280 x 720 Crop from a wider landscape source by trimming equal bands from the left and right edges
Square post (Instagram feed) 1:1 1080 x 1080 Center the square on the source frame so the subject of interest stays centered
Vertical post (Reels, Shorts, TikTok) 9:16 or 4:5 1080 x 1920 or 1080 x 1350 Use a vertical source or accept heavy edge cropping from a landscape source
Removal of a static banner or watermark Matches the source aspect ratio minus the removed band Depends on the band height Measure the band's pixel height and subtract it from Y plus height

A useful rule of thumb is to measure first and crop second. Eyeballing the rectangle in a desktop editor and then trying to reproduce the same numbers in a web tool is a common source of small but visible framing errors.

What to Do If the Output Looks Wrong

Three failures account for almost every bad crop result, and each has a direct fix.

  • The rectangle runs past the frame edge. The output will be black on the over-edge side or the encoder will refuse to start. Recompute X + width and Y + height against the source dimensions and reduce one of the two values until both sums are within bounds.
  • The subject drifts out of frame as the video plays. This happens when the source is panning or zooming, because a static rectangle cannot follow motion. Either accept the framing as a compromise or re-shoot with a steadier camera.
  • The WebM looks blocky or low quality. WebM encodes at a moderate bitrate by default. If your clip needs higher fidelity, run the cropped output through the Video Compressor using its quality preset, or first read the broader guidance in how to compress video file size without uploading.

When You Need a Cut Instead of a Crop

Cropping removes pixels around the edges of every frame. Cutting removes whole seconds from the start, middle, or end of the clip. They are different operations, and using the wrong one wastes effort. If your goal is to remove a 10-second intro, use the Video Trimmer instead, which produces a finite-duration WebM clip from a bounded time range without re-encoding the picture.

Similarly, if you want only a still image from a moment in the video, the Video Frame Extractor seeks to an exact time and saves a full-size PNG. That is faster than cropping and exporting a one-frame video.

Putting the Cropped Clip to Work

After you download the cropped WebM, it is ready to drop into social posts, slide decks, or web pages. If you want to post it on a platform that prefers a different codec, convert the file on your own machine with a desktop tool rather than re-uploading the cropped version to another web service. For more context on the broader workflow, see the guide on cropping a video for free in your browser.

One final habit is worth adopting: keep an unmodified copy of the original source file until you have watched the full cropped output at least once. Cropping is non-destructive in the sense that your source file is untouched, but it is easy to mis-enter values and only notice the mistake after you have already deleted the original. A 30-second review pass before cleanup saves the cost of a re-record.

If you're weighing options, How to Capture a Video Frame in Lightroom: A Practical Guide covers this in detail.

If you're weighing options, Best Video Format for Instagram: Exact Specs and How to Resize covers this in detail.