Crop video file in FFmpeg

FFmpeg video crop reduces the dimensions of a video. For example, retain the right half of a 1920x1080 video:

ffmpeg -i input.avi -vf crop=x=960 output.avi

The FFmpeg crop examples help illuminate the syntax.