Tested tool guide
Tested browser tools
Checked August 16, 2026
What Video Cropper does, with a checked example
Video Cropper cuts a video down to a rectangle you choose: load a file, position a crop box over a preview frame, pick an aspect ratio preset, and download a new video containing only that region. The crop is applied by decoding the source and encoding the selected region into a fresh file. What people most often get wrong: cropping never adds picture. A 16:9 source cannot become a tall 9:16 frame without throwing away most of its width, and the result is a new encode, so quality and file size come from the encoder, not from how much you removed.
Worked example
A concrete input and expected output from the current implementation.
Input
1920x1080 video, crop with the 1:1 (square) preset, region centered on the frame.
->
Expected output
A 1080x1080 video of the same duration, containing the central square of every frame. The output is 840 pixels narrower: the preset centers the box, so 420 pixels are cut from each side (1920 - 1080 = 840, divided equally).
1:1 fixes output width equal to height, and the crop box is bounded by the source, so the largest possible square is 1080x1080. Centering splits the removed width evenly between the left and right edges, and duration is untouched because cropping only changes dimensions.