2017-05-13 2 views
0

FFMPEGでビデオを「暗号化」する必要があります。FFMPEG |作物の並べ替え

私は多くの研究を行なったし、私は私の問題への解決策を見つけることができませんでした:(

はそれを行うすることが可能です

私は必要なもの:?

enter image description here

答えて

1

enter image description hereenter image description here
イメージの前後の例

使用crophstack、および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 
関連する問題