How can I continue an existing wav recording using SOX ?
I tried with:
rec test.wav –combine concatenate test2.wav
test.wav is the old file
test2.wav is the new file
The problem is that the new recording is placed at start instead that at end of test.wav
The
reccommand is just a shortcut forsox -dwhere-dcan be used in place of an input or output file to select the default device as input or output. When you writeit will be the same as
in this case
-dis listed beforetest.wavand thus will be the first part of the output file. Runningshould do what you want.