`crop` を指定する。 512x512のサイズを256x256へと中央トリミングしたい場合... ```console ffmpeg -i input.png -vf crop="256:256:128:128" output.png ``` `crop`の指定は `横:縦:横起点:縦起点` となる。 <div style="position: relative; width: 256px; height: 256px; background-color: #f009"> <span style="color: white">元の画像(512x512)</span> <div style="position: absolute; width: 128px; height: 128px; left: 64; top: 64; background-color: #fff7"> <span style="color: white">トリミング範囲(256x256)</span> </div> </div>