Skip to content

Instantly share code, notes, and snippets.

@benvium
Created February 15, 2016 18:15
Show Gist options
  • Save benvium/07f08ec52ac5f5768de8 to your computer and use it in GitHub Desktop.
Save benvium/07f08ec52ac5f5768de8 to your computer and use it in GitHub Desktop.
Convert all WAVs in folder to mono 22050khz
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