Last active
May 15, 2019 21:57
-
-
Save maciejjankowski/1c98cfe12679503f5fe3694eefb8fb39 to your computer and use it in GitHub Desktop.
convert sample rate command line sox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for file in * | |
do | |
if [ ! -d "$file" ] && [ ! "$file" == 'convert.sh' ] ; then | |
sox $file -b 16 -c 1 -r 48k "converted/$file" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment