LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   sox convert a-law mono 8000hz wav to pcm signed 16bit mono wav (https://www.linuxquestions.org/questions/linux-software-2/sox-convert-a-law-mono-8000hz-wav-to-pcm-signed-16bit-mono-wav-819739/)

saiyen2002 07-14-2010 04:36 AM

sox convert a-law mono 8000hz wav to pcm signed 16bit mono wav
 
How can i use sox to convert a Wave A-Law, 8000Hz 64kbps, mono to a Wave PCM signed 16bit, 8000Hz, 128kbps, mono

Thanks

H_TeXMeX_H 07-15-2010 05:42 AM

I don't know how you would set the bitrate with sox, but for the rest:

Code:

sox input.wav -s -b 16 output.wav
The sample rate and mono should be automatically set from the input file.

fpini 02-23-2012 08:02 PM

Quote:

Originally Posted by H_TeXMeX_H (Post 4033749)
I don't know how you would set the bitrate with sox, but for the rest:

Code:

sox input.wav -s -b 16 output.wav
The sample rate and mono should be automatically set from the input file.

Try:

sox input.wav -s -w output.wav


All times are GMT -5. The time now is 07:59 PM.