I'm using the sox tool and I would like to merge two audio files, let's say long.ogg and short.ogg to output a file output.ogg. This is very easy using $ sox -m long.ogg short.ogg output.ogg.

Thing is, I would like the short.ogg to be played after n seconds (while long.ogg should start right from the beginning). To do so, I've found the pad effect. But I don't understand the syntax to delay only the short.ogg input file, not the long.ogg one.

I found a (dirty) way of doing so (with n=6):

$ sox short.ogg delayed.ogg pad 6
$ sox -m long.ogg delayed.ogg output.ogg

I would like not to have to create an intermediate file. Thanks in advance for your help.

link|improve this question

75% accept rate
feedback

2 Answers

You should be able to do something like:

sox short.ogg -p pad 0 6|sox - long.ogg output.ogg

-p option to sox is used for piping - basically, it tells sox to use stdout as the output. Using - as the input to the second sox is actually saying input is stdin (which happens to be the stdout of the previous sox, as we are piping with |). pad 0 6 tells pad 0 seconds at the beginning and 6 seconds at the end.

Hope this helps.

link|improve this answer
Thanks! I actually had to add the mix option -m because without it, the whole sound was delayed. Please see my edit. – Zopieux Apr 29 '11 at 7:30
I did not read the question - what I wrote will play short.ogg, wait 6 seconds and then play long.ogg, writing the whole result to output.ogg. Anyway, glad you found the solution! I suggest adding it as an answer and officially choosing as the solution - for the others with the same problem. – icyrock.com Apr 30 '11 at 0:52
feedback
up vote 0 down vote accepted

Thanks to icyrock, I managed to find a solution. I'm using:

$ sox short.ogg -p pad 6 0 | sox - -m long.ogg output.ogg
link|improve this answer
how to this with multiple tracks? 3,4,5 tracks – TrustWeb May 10 at 13:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.