gpt4 book ai didi

audio - 如何将 mp3 文件和 webm 文件合并成一个新的 webm 文件?

转载 作者:行者123 更新时间:2023-12-02 22:45:47 36 4
gpt4 key购买 nike

有一个不包含音频的 webm 文件。我想将音频文件与此视频合并。我试过以下命令:

ffmpeg -i /home/test.mp3  -i /home/output.webm -vcodec copy -acodec copy /home/newtest.webm

并收到错误:
Could not write header for output file #0 (incorrect codec parameters ?):         Invalid argument.

最佳答案

ffmpeg -y -i vFilePath -i aFilePath -map 0:0 -map 1:0 -c copy oFilename

在哪里:
  • vFilePath : 视频文件路径
  • aFilePath : 音频文件路径
  • oFilePath : 输出文件路径
  • 关于audio - 如何将 mp3 文件和 webm 文件合并成一个新的 webm 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31757246/

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