Como criar uma imagem usando imagens com o FFMPEG?

0

Como criar uma imagem usando imagens com o FFMPEG? Algo como abaixo?

-f lavfi -i color=c=white:s=1080x1920 -loop 1 -i 1.png -loop 1 -i 2.png -filter_complex [0:v][1:v]overlay=shortest=1:x=0:y=0[v1];[v1][2:v]overlay=shortest=1:x=10:y=10 -vframes 1 -q:v 5
    
por nzackoya 27.07.2018 / 12:45

1 resposta

0

Descobri por mim mesmo

-f lavfi -i color=c=white:s=1080x1920 -loop 1 -i 1.png -loop 1 -i 2.png -filter_complex [0:v][1:v]overlay=shortest=1:x=0:y=0[v1];[v1][2:v]overlay=shortest=1:x=10:y=10 -r 1 -vframes 1 -pix_fmt yuv420p -c:v libx264 export.jpg
    
por 25.08.2018 / 22:41