需求描述
原视频分辨率:1920x1100
需要修改为1920x1080,视频的高最上面的20个像素不要。
修建命令
ffmpeg -i in.mp4 -filter:v "crop=1920:1080:0:20" out.mp4
参考如下:
ffmpeg -i in.mp4 -filter:v "crop=out_w:out_h:x:y" out.mp4
Where the options are as follows:
out_w
is the width of the output rectangleout_h
is the height of the output rectanglex
andy
specify the top left corner of the output rectangle