ls -lrt *wav|wc -l --> 2160
Got around 2k audio files with sample rate 8k. Need to make an script to convert all the files to 16k Sample rate.For now Usig SOX for converting 1 file at a time. For eg. :-
sox 9560850166.wav -r 16000 -b 16 -c 1 file1.wav
Need an script so that next audio files will be selected from the directory and SOX will be done to change sample rate and it will be saved with a new file name like file1.wav, file2.wav etc...