Skip to content

Instantly share code, notes, and snippets.

@asus4
Created November 6, 2014 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asus4/726888a6bb778ce849f4 to your computer and use it in GitHub Desktop.
Save asus4/726888a6bb778ce849f4 to your computer and use it in GitHub Desktop.
Convert Wave audio to Caf format
#!/bin/sh
for file in *.wav
do
/usr/bin/afconvert -f caff -d ima4@22050 -c 1 $file ${file%.wav}.caf
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment