Applying multiple filters at once with FFMPEG

前端 未结 2 1414
执念已碎
执念已碎 2020-12-07 18:22

I have the need to apply fadein and overlay filters to a video. Is it possible to apply 2 filters at once?

I got:

ffmpeg -i input.mpg -vf \"movie=wat         


        
2条回答
  •  感情败类
    2020-12-07 19:06

    Yes it is possible .

    ffmpeg.exe -i yourvideo.avi -vf "[in] scale=iw/2:ih/2, pad=iw+40:ih+40:10:10 [top]; movie=yourLogoOrVideo.pngOraviEtc, scale=iw/2:ih/2 , fade=out:400:40:alpha=1 [bottom]; [top][bottom] overlay=PaddingFromTop:PaddingFromLeft [out]" -f flv ff.flv
    

提交回复
热议问题