How do I change the sample rate for every file in the folder?
The following code converts the files, but it erases the file. After this command, every wav file is empty.
for i in wav/*.wav; do
sox -r 8000 -e unsigned -b 16 -c 1 "$i" "$i"
done
How do I run the code to every file in the directory?