ffmpeg Error configuring complex filters

时光怂恿深爱的人放手 提交于 2019-12-02 04:26:04

For the given set of inputs, you would use

 -i "E:\Documents\Content Bar\Photo Booth\PhotosDrop\20180416215218.mp4"
 -i "E:\Desktop\Videos\Processing\2018-05-15 14-01-16.mp4"
 -i "E:\Documents\Content Bar\Photo Booth\PhotosDrop\20180416215218.mp4"
 -i "E:\Desktop\Videos\Processing\2018-05-15 14-01-27.mp4"
 -i "E:\Documents\Content Bar\Photo Booth\PhotosDrop\20180416215218.mp4"
 -i "E:\Documents\Content Bar\Photo Booth\PhotosDrop\20180416215218.mp4"
 -i "E:\Desktop\Videos\Processing\2018-05-15 14-01-33.mp4"
 -i "E:\Documents\Content Bar\Photo Booth\PhotosDrop\20180416215218.mp4"
 -filter_complex "
    [1:v]scale=800:600:force_original_aspect_ratio=decrease,pad=800:600:(ow-iw)/2:(oh-ih)/2,setsar=1[1v];
    [3:v]scale=800:600:force_original_aspect_ratio=decrease,pad=800:600:(ow-iw)/2:(oh-ih)/2,setsar=1[3v];
    [6:v]scale=800:600:force_original_aspect_ratio=decrease,pad=800:600:(ow-iw)/2:(oh-ih)/2,setsar=1[6v];
    [0:v] [0:a] [1v] [1:a] [2:v] [2:a] [3v] [3:a] [4:v] [4:a] [5:v] [5:a] [6v] [6:a] concat=n=7:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" "E:\Desktop\Videos\Processing\2018-05-15 14-01-16OUT.mp4"

For each of the 720p inputs, the video is resized to a 800X600 canvas and the SAR is set to 1.

(You don't make use of the 8th input).

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!