gpt4 book ai didi

ffmpeg - 使用 FFMPEG 命令从多个图像 + 音乐创建 MP4 视频

转载 作者:行者123 更新时间:2023-12-04 23:16:15 24 4
gpt4 key购买 nike

我创建了包含多个图像和单个音乐文件的视频。它工作正常

ffmpeg -y -framerate 1/5 -start_number 1 -i /<<dir path>>/photo3-%04d.jpg -i /<<dir path>>/music3-000.mp3 -c:v libx264 -r 30 -pix_fmt yuv420p -c:a aac -strict experimental -shortest /<<dir path>>/video/output.mp4;

但是当我尝试使用多个音乐文件时,它会在终端中抛出错误。

命令:
ffmpeg -y -framerate 1/5 -start_number 1 -i /<<dir path>>/photo3-%04d.jpg -i /<<dir path>>/music3-%03d.mp3 -c:v libx264 -r 30 -pix_fmt yuv420p -c:a aac -strict experimental -shortest /<<dir path>>/video/output.mp4;

错误:
/<<dir path>>/music3-%03d.mp3: No such file or directory

最佳答案

没有音频序列解复用器。要在命令中组合多个音频文件,您必须使用 concat demuxer。

首先,使用文件列表创建一个文本文件

file 'music3-000.mp3'
file 'music3-001.mp3'
file 'music3-002.mp3'
...

然后运行
ffmpeg -y -framerate 1/5 -start_number 1 -i /<<dir path>>/photo3-%04d.jpg \
-f concat -i list.txt \
-c:v libx264 -r 30 -pix_fmt yuv420p -c:a aac -strict experimental
-shortest /<<dir path>>/video/output.mp4

关于ffmpeg - 使用 FFMPEG 命令从多个图像 + 音乐创建 MP4 视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36549958/

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