如何在ffmpeg中为wav文件添加额外的长度


0

我可以将wav合并到一个文件中。

我需要知道 如何使用ffmpeg添加额外的5秒静默长度wav文件结束而不合并5秒静默wav文件。我只是尝试一些代码:

ffmpeg -i input1.wav -i silent1.wav -i input2.wav -i silent2.wav ....

C#标签有什么用?
DavidPostill

是否有任何解决方案与c#做
Eranga Dayarathne

编程和软件开发特有的问题是主题,请参阅 在话题
DavidPostill

Answers:


1

以这种方式添加静音输入 -f lavfi -t 5 -i anullsrc 并在任何地方使用它。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.