How To: SOX - it-muslim/kaldi GitHub Wiki
sox - program for manipulating audio files. There is also sox package for python, which allows using sox tools in a python script.
How To:
- Watch information about audio file:
soxi <filename> - Convert mp3 files to wav:
sox -G -q --multi-threaded "$f" -t wav -r 16000 -c 1 "${f/.mp3/}".wav dither. Seeasr/fatiha/convert_mp3_to_wav.shexample of converting all mp3 files at once. Optimal converting options: TBD.