i'm tryin to encode individual files using the following command.
mpg123 -s *.mp3 | sox -t raw -r 44100 -s -w -c 2 - *.wav
it worked fine.... except all the tracks are sitting in TRACK_01.wav, and there are no TRACK_02.wav, TRACK_03.wav, etc. is their an option to fix this problem... or do i have to write a script to run command for each individual .mp3 file
mpg123 -s *.mp3 | sox -t raw -r 44100 -s -w -c 2 - *.wav
it worked fine.... except all the tracks are sitting in TRACK_01.wav, and there are no TRACK_02.wav, TRACK_03.wav, etc. is their an option to fix this problem... or do i have to write a script to run command for each individual .mp3 file