Crop 문법
crop=W:H:X:Y. W 와 H 가 output dimension; X 와 Y 가 input 기준 top-left corner. Default 가 (in_w-out_w)/2 와 (in_h-out_h)/2 — centered.
흔한 패턴
crop=in_w:in_h*0.9— bottom 10% 자름 (de-letterbox).crop=in_w/2:in_h:0:0— frame 의 left 절반.crop=1080:1920— 16:9 에서 vertical 9:16 (TikTok format), centered.crop=in_h*9/16:in_h— 어떤 horizontal source 든 vertical crop.