有一种需求,将图像旋转任意角度,下面看一下滤镜帮助信息,rotate滤镜可以解决这个需求,angle或者a就是设置一下角度:
[AppleScript] 纯文本查看 复制代码
rotate AVOptions:
angle <string> ..FV.... set angle (in radians) (default "0")
a <string> ..FV.... set angle (in radians) (default "0")
out_w <string> ..FV.... set output width expression (default "iw")
ow <string> ..FV.... set output width expression (default "iw")
out_h <string> ..FV.... set output height expression (default "ih")
oh <string> ..FV.... set output height expression (default "ih")
fillcolor <string> ..FV.... set background fill color (default "black")
c <string> ..FV.... set background fill color (default "black")
bilinear <boolean> ..FV.... use bilinear interpolation (default true)
下面旋转一个30°角度图像看一下效果
[AppleScript] 纯文本查看 复制代码 ffmpeg -i ~/test/objectC/facebook.mp4 -filter_complex "rotate=a=30" /root/a.mp4
效果图如下
|