1 Oct
2003
1 Oct
'03
9:16 p.m.
On Wed, Oct 01, 2003 at 01:01:32PM -0400, Karl Hiramoto wrote:
nevermind, RTFM and i answered my own question.
sox infile.wav -r 44000 -c 2 outfile.wav
Nooooooooo! :) I can't let you do this. :) :) This will use the default linear sampling, and sound pretty bad, mostly because you're aliasing the frequency. You actually want 44100Hz. Since I'll assume the original sample is 22050Hz, a linear sample would probably be pretty clean, but you'll probably like the sound better if you specify the polyphase algorithm for changing the sample rate. So: sox infile.wav -r 44100 -c 2 outfile.wav polyphase Good luck! -Chuck