Giuseppe
Giuseppe

Reputation: 1089

How to continue a recording?

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

Upvotes: 1

Views: 139

Answers (1)

jix
jix

Reputation: 329

The rec command is just a shortcut for sox -d where -d can be used in place of an input or output file to select the default device as input or output. When you write

rec test.wav --combine concatenate test2.wav

it will be the same as

sox -d test.wav --combine concatenate test2.wav

in this case -d is listed before test.wav and thus will be the first part of the output file. Running

sox test.wav -d --combine concatenate test2.wav

should do what you want.

Upvotes: 2

Related Questions