Last active
August 24, 2020 14:29
-
-
Save ritec/b499f2c8555ba7e3c1f2c11d6f6d37ab to your computer and use it in GitHub Desktop.
Change format of Audio for Erica Synths Drum Sampler
This file contains hidden or 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
rmdir ../temp #if there's a temp dir, let's remove it | |
mkdir ../temp #now make a new temp dir | |
find . -type d -print0 | while read -d $'\0' subdir; #find all subdirectories | |
do echo $subdir; mkdir ../temp/${subdir// /}; #and recreate them in the temp dir | |
done | |
find . -name "*.wav" -print0 | while read -d $'\0' file; #find all *.wav files to convert | |
do echo $file; # for each file found | |
/Users/rcaragol/Downloads/sox-14.4.2/sox -G "$file" --norm=-1 -b 16 -r 48k -c 1 ../temp/${file// /}; #convert to temp directory and remove spaces from filename | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment