需求描述

原视频分辨率:1920x1100
需要修改为1920x1080,视频的高最上面的20个像素不要。

修建命令

  1. ffmpeg -i in.mp4 -filter:v "crop=1920:1080:0:20" out.mp4

参考如下:

  1. 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 rectangle
  • out_h is the height of the output rectangle
  • x and y specify the top left corner of the output rectangle

参考

How can I crop a video with ffmpeg?