Skip to content

Instantly share code, notes, and snippets.

@ruslanskorb
Created January 13, 2015 13:25
Show Gist options
  • Select an option

  • Save ruslanskorb/2025cd6375f6ae276b42 to your computer and use it in GitHub Desktop.

Select an option

Save ruslanskorb/2025cd6375f6ae276b42 to your computer and use it in GitHub Desktop.
Script to convert mp3 files into caf files.
#!/bin/zsh
for i in *.mp3; do
afconvert -d LEI16 -f 'caff' $i ${i%.mp3}.caf;
#rm -fv $i;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment