How to merge several audio files using sox

僤鯓⒐⒋嵵緔 提交于 2019-12-01 04:07:00

You can do it with one invocation of sox like this:

sox -m in1.mp3 in2.mp3 in3.mp3 out.mp3

If you want to combine this with the pad effect you need to be clearer about what you want.

To combine mix and effects (pad, trim etc) use the following:

sox -m "|sox end.mp3 -p pad 6 0" start.mp3 output.mp3

The general pattern is:

sox -m input1 input2 ... inputN output

where inputX can be either a filename or a pipe in quotes

"|sox end.mp3 -p pad 6"
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!