Cropping is the right choice when you need to remove a fixed rectangular area from every frame of a clip while keeping the original resolution inside the remaining region. The operation discards outer pixels — letterbox bars, a watermark in a corner, a hardcoded lower-third, or unwanted margins around a subject — and re-records just the rectangle you define, leaving the content inside untouched in terms of resolution. Video Cropper is built for exactly this job: you enter four whole-pixel values (X, Y, width, height) measured from the source frame's top-left corner, and the tool draws only that rectangle into a Canvas, records the resulting stream as a WebM, and offers it for download. Nothing is uploaded, and the rectangle stays fixed across every frame, so cropping only suits tasks where the unwanted area is static and the content you want to keep sits in the same place throughout. If the goal is to make the file smaller, shorten the clip, or scale the whole picture to a new size, a different tool fits better.

how do i decide whether i need to use video crop
How to Decide If You Need to Crop a Video

What Video Crop Actually Changes

Cropping changes the visible region of every frame by trimming pixels from the edges. The inner rectangle keeps its source resolution; only the outer area is removed. This is a spatial edit, not a time edit and not a quality edit. Three other operations look similar at a glance but solve different problems:

OperationWhat it changesWhat it does not change
CropThe visible rectangle inside every frameClip length, encoded quality of inner pixels, original time position
ResizeThe width and height of every frameClip length, which pixels are inside the frame
TrimThe start and end time of the clipFrame content, frame dimensions
CompressThe encoded bitrate and output file sizeFrame content, frame dimensions, clip length

The categories can overlap — a cropped and re-encoded clip will often be smaller than the source — but the operation itself targets one thing. If the only goal is to remove pixels from the edges and keep the inner rectangle intact, cropping is the direct route. If the goal is a smaller file regardless of frame area, compression is the direct route.

When Cropping Is the Right Choice

Cropping fits when the area to remove stays in the same place for the entire clip and the content to keep fits inside a single rectangle throughout. Concrete situations where this holds:

  • Static black bars from a 4:3 source letterboxed into a 16:9 master, or pillar bars from a 16:9 clip placed inside a wider frame.
  • A watermark or channel logo fixed to one corner — top-right, bottom-left — that you have permission to remove.
  • A hardcoded lower-third, ticker, or timestamp overlay that does not move across frames.
  • Re-framing for a different aspect ratio when the subject sits roughly centered and stays inside the new rectangle for the whole clip — for example, cutting a 1920 × 1080 master down to a centered 1080 × 1080 square.
  • Matching a platform's required frame where the destination player or upload form rejects clips that include unwanted edges, regardless of resolution.

If the unwanted edges drift, the subject walks out of frame, or a key element crosses the rectangle you intend to draw, cropping will hide it partway through and produce a result that looks broken. For tasks like those, reframing with a moving crop, blurring, or a different tool entirely is the safer choice. A broader walk-through of when cropping is the right approach lives in how to pick the right approach to video crop.

When Cropping Is Not the Right Choice

Cropping is the wrong tool when the goal is something it does not do, even though the wording overlaps in everyday speech. Skip cropping when:

  • A smaller file is the goal. Cropping keeps the inner pixels at their source resolution and the WebM encoder picks a bitrate from the cropped pixel area at 30 fps, bounded between 180 kbps and 8 Mbps. Use Video Compressor when file size is the real objective.
  • The clip is too long. Cutting time is trimming, not cropping. Use Video Trimmer when you want to drop the first ten seconds or keep only the middle minute.
  • The whole frame needs a new resolution. Scaling every pixel is resizing; cropping only removes edges. Use Video Resizer when you want every frame to fit a new width and height.
  • The crop rectangle would have to follow a moving subject. One fixed rectangle is applied to every frame, so the tool does not track a person or object that moves around. A second rectangle, pan-and-scan, or an editor with motion tracking fits better.
  • A specific object or face needs to be hidden. Cropping cannot blur or redact; it only removes edges. For region-level redaction, an editor with masks is the correct tool.
  • Subtitles, chapters, rotation tags, HDR metadata, or other container features must survive. The crop records a fresh WebM and does not preserve those fields, so review the result if they matter to the destination.

Pre-Crop Checklist Before You Open the Tool

Five questions confirm that cropping fits before any numbers are entered. Run through them in order:

  1. Are the unwanted edges static? If the area to remove moves, drifts, or changes intensity, cropping will fail partway through.
  2. Does the area to keep fit inside one rectangle for the entire clip? If the subject leaves the planned crop box at any point, stop.
  3. What are the source dimensions? The source width and height in pixels are required before a valid X, Y, width, and height can be picked. Video Cropper loads these once the file is decoded.
  4. Will the cropped output fit the limits? Output area must not exceed 3840 × 2160 pixels, the source must be at most 500 MiB, decoded duration must be above zero and no more than five minutes, and no source side may be above 4096 pixels, and no source area may be above 3840 × 2160 pixels.
  5. Is there time for real-time processing? The tool plays the source locally while recording, so a one-minute source takes about one minute. Closing the tab stops the export.

A short list to pair with these questions sits in avoid mistakes when you crop a video: a pre-crop checklist, which expands each point into the failure modes that follow when the checks pass anyway.

Worked Example: Center a 1920 × 1080 Source Into a 1080 × 1080 Square

Suppose the centered region of a 1920 × 1080 source needs to become a 1080 × 1080 square for a social post.

  1. Width: desired crop width is 1080.
  2. Height: source height is 1080 and the crop height should also be 1080.
  3. X: (source width − crop width) ÷ 2 = (1920 − 1080) ÷ 2 = 420.
  4. Y: (source height − crop height) ÷ 2 = (1080 − 1080) ÷ 2 = 0.
  5. Boundary check: X + width = 420 + 1080 = 1500 ≤ 1920 ✓; Y + height = 0 + 1080 = 1080 ≤ 1080 ✓.
  6. Area check: 1080 × 1080 = 1,166,400 pixels, well under the 3840 × 2160 = 8,294,400 limit ✓.

The four values — X = 420, Y = 0, width = 1080, height = 1080 — are the exact rectangle the tool needs.

Crop a Video Locally With Video Cropper

Once the pre-crop checks pass, the actual crop is a four-step browser flow. Each step uses the validated values written down earlier.

  1. Open Video Cropper and choose a browser-decodable source. MP4, WebM, MOV, M4V, and Ogg are accepted extensions; actual decoding depends on the current browser, so an accepted extension is not a guarantee. Wait for the source dimensions to load before touching any field — those numbers are what make the rectangle valid.
  2. Enter X, Y, width, and height as whole pixels from the source's top-left corner. X moves the crop right and Y moves it down. Width controls the horizontal extent and height controls the vertical extent. Every value must be an untrimmed nonnegative whole pixel count, width and height must each be at least two pixels, and X + width and Y + height must both stay inside the decoded source. The defaults select the full frame.
  3. Select Crop video and keep the tab open during real-time processing. The browser plays the source locally, draws the fixed rectangle into an opaque Canvas at 30 fps, appends capturable audio when available, and records VP9, VP8, or generic WebM depending on what the browser reports first. The canvas drawImage operation that performs the draw is defined in the WHATWG HTML Canvas specification. A one-minute source takes about one minute; closing the tab cancels the export.
  4. Download the WebM and play it back end to end. Open the file in the destination player, confirm the rectangle is correct in every scene, and check that any audio needed is present. The crop does not shift, clip, round, or produce a partial file on bad coordinates — it simply fails — but reviewing the result is still the only way to confirm the export matches the plan.

Verify the Cropped WebM Before You Delete the Original

Keep the source until the entire output has been reviewed. The recorder runs in real time and depends on whatever WebM encoder the browser exposes, so size and quality shift with motion, noise, grain, and source codec. Four checks cover the common failure modes:

  • Duration is finite. Streaming MediaRecorder output can omit a finite container duration; Video Cropper patches the Matroska Duration value in timestamp-scale ticks using the same standards-tested writer shared with Video Compressor, which is specified in the Matroska Media Container Format. Confirm the WebM reports a real duration in the player rather than an open-ended stream.
  • The rectangle is correct. Scrub to the start, middle, and end of the clip and check that the same inner region appears in every scene.
  • Audio is present when expected. Audio is appended only when the browser exposes a capturable track through media capture; support varies, and the source may play audibly during real-time processing. If audio is missing and it was needed, confirm the source has a track the browser can capture, then re-run the crop.
  • Compatibility in the destination player. Open the WebM in the platform, editor, or app that will use it and confirm it decodes at the requested dimensions. If a player rejects the file, the codec the browser picked may not be the codec the destination expects, and re-encoding through Video Compressor with a different preset can help.

Once all four checks pass, the source can be archived or deleted. If any check fails, the original is still on disk and the crop can be re-run with new coordinates, a smaller rectangle, or a different source clip.