Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个波形 (.wav) 样本,每个样本持续时间为 1 秒。我需要混合它们,使第二个波形文件在第一个波形文件后 0.5 秒开始。我需要将混合波形格式导出到一个名为 output.wav 的新波形文件中。如何使用 ffmpeg 实现这一目标?
Sox将允许混合音频文件。您可以使用 -p pad 选项指定偏移量。
sox -m sound1.wav "|sox sound2.wav -p pad 0.5" out.wav
查看Sox FAQ的问题 7了解更多信息