
The following example shows how you can use FFMPEG to crop a video without re-encoding.
ffmpeg -i input.mp4 -filter:v “crop=1280:200:0:500” -c:a copy output.mp4
where 1280 and 200 are the output size (width and height) of the cropped video, 0 and 500 are positions where the cropping will start.