FFMPEG |重新排列作物

FFMPEG | Rearrange crop

我需要 "Encrypt" 使用 FFMPEG 制作视频。

我做了很多研究,但没有找到解决问题的方法:(

可以吗?

我需要的:


前后图像示例。

使用 crop, hstack, and vstack 个过滤器:

ffmpeg -i input -filter_complex \
"[0:v]crop=iw/2:ih/2:0:0[lt]; \
 [0:v]crop=iw/2:ih/2:ow:0[rt]; \
 [0:v]crop=iw/2:ih/2:0:oh[lb]; \
 [0:v]crop=iw/2:ih/2:ow:oh[rb]; \
 [lb][lt]hstack[top]; \
 [rt][rb]hstack[bottom]; \
 [top][bottom]vstack" \
-c:a copy output