I am doing a research in noise reduction. Could anyone tell me how to mix a noise file with an audio file? I am working with the AN4 database, so they are all in "raw" format. Thanks in advance.

link|improve this question
feedback

1 Answer

You can take a noise file noise.wav and then mix it to an4 file with sox:

sox -m -r 16000 -s -2 file.raw noise.wav file_noise.wav

You can run sox in a loop to mix noise into all files

You can also mix white noise with sox dither command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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