FFmpeg - 连接音频 - 视频?
如何使用 ffmpeg 连接音频和视频文件?
我正在尝试这个,但它不起作用:
ffmpeg -i source.mkv -i new_audio.mp3 \
-vcodec copy -acodec copy \
-acodec copy \
destination.mkv \
-newaudio
How can i concatenate audio and video files by using ffmpeg?
I'm trying this but it does not work:
ffmpeg -i source.mkv -i new_audio.mp3 \
-vcodec copy -acodec copy \
-acodec copy \
destination.mkv \
-newaudio
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
-map input_index
合并两个输入文件中的所有流,如下所示:要仅合并选定的流,请使用
-map input_index:stream_index
。例如,以下将第一个输入的第一个流与第二个输入合并:请注意,索引从零开始。
You can merge all streams from both input files using
-map input_index
as the following:To merge only selected streams use
-map input_index:stream_index
. For example, the following merges the first stream of the first input with the second input:Note, that indices start from zero.