I have about 20 audio files(.wav) in a folder , this is how I combine this wave files
sox *.wav output.wav
I want to add delay or silence between each wave .
I have tried pad , but it's just put the silence only at the start and end of output.wav .
loopworks :) Thanks a lot – zey Jun 03 '15 at 12:17trackN.wavis very large (e.g.1000),Too many open fileserror occurs becausesoxtries to opensilence.wavthe number of times specified as command-line arguments. To avoid this, you can generate multiple silent files (i.e.silence_1.wav,silence_2.wav, ...) and iteratively or randomly use them (e.g./tmp/silence_$((RANDOM % 10)).wav). – ynn Jan 07 '23 at 04:32