gpt4 book ai didi

FFMpeg 流说明符不匹配

转载 作者:行者123 更新时间:2023-12-04 22:55:20 28 4
gpt4 key购买 nike

我试图将 2 到 n 个具有各种过渡的视频与来自它们上方的 mp3 音频结合起来(最后一秒已褪色)。

ffmpeg -ss 5 -t 10 -i C:\Users\User\source\repos\tryRunFFmpeg\2_snow.mp4  
-ss 5 -t 10 -i C:\Users\User\source\repos\tryRunFFmpeg\3_sun.mp4
-i C:\Users\User\source\repos\tryRunFFmpeg\outaudio.mp3
-filter_complex "[0:v]setpts =PTS-STARTPTS[va0];[1:V]fade=t=in:st=0:d=0.5:alpha=1,fade=t=out:st=9.5:d=0.5,setpts=PTS-STARTPTS+10/TB[va1];[2:a]fade=t=out:st=9.5:d=0.5[aa];[va0][va1]overlay[outv]"
-map aa -c:a copy -map [outv] -crf 10 -b:V 10M -shortest C:\Users\User\source\repos\tryRunFFmpeg\testAgaint.mp4

我得到这个错误
Stream specifier ':a' in filtergraph description [0:v]setpts =PTS-STARTPTS[va0];[1:V]fade=t=in:st=0:d=0.5:alpha=1,fade=t=out:st=9.5:d=0.5,setpts=PTS-STARTPTS+10/TB[va1];[2:a]fade=t=out:st=9.5:d=0.5[aa];[va0][va1]overlay[outv] matches no streams.

最佳答案

您的命令有几个小问题:

Stream specifier ':a' in filtergraph description ... matches no streams.



更改 [2:a]fade[2:a]afade .淡入淡出滤镜用于视频。淡入淡出过滤器用于音频。

Filter afade has an unconnected output



更改 -map aa-map [aa] .

Streamcopy requested for output stream 0:0, which is fed from a complex filtergraph. Filtering and streamcopy cannot be used together.



删除 -c:a copy .

关于FFMpeg 流说明符不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55089362/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com