How Crop video works
Crop a video to a specific rectangle or aspect ratio inside your browser, with ffmpeg WebAssembly handling every pixel on your own device. Pick one of the centred ratio presets (1:1 square, 16:9 landscape, 9:16 vertical, 4:3, 3:4) to frame social-media formats in one click, or enter a custom width, height, and offset to cut an exact region. The ffmpeg crop filter (crop=W:H:X:Y) re-encodes the frame area you keep using libx264 while copying the audio track untouched.
Because the frame dimensions change, a full pixel re-encode of the video stream is unavoidable, unlike rotation which can use metadata tricks. Expect processing time proportional to the clip length and your CPU speed. The output is MP4 H.264, which plays on every modern device.