Created
February 15, 2016 18:15
-
-
Save benvium/07f08ec52ac5f5768de8 to your computer and use it in GitHub Desktop.
Convert all WAVs in folder to mono 22050khz
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
for file in *.wav; do ffmpeg -i "$file" -ac 1 -ar 20050 "../WAVout/$file"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment