I have a directory with about 50 wav files that I need to convert to caf, because AudioServicesCreateSystemSoundID() returns an error for some of them (but not all).

Here's an example of the command I've used successfully for a single file:

afconvert -f caff -d LEI16@44100 -c 1 whistle.wav whistle.caf

How do I do this quickly - not one-by-one for each file?

link|improve this question

feedback

5 Answers

up vote 7 down vote accepted

On Windows, use the %~ni syntax.

for %i in (*.wav) do afconvert -f caff -d LEI16@44100 -c 1 %i %~ni.caf
link|improve this answer
What does %~ni do? – mahboudz Sep 2 '09 at 5:29
I see, it removes the last filename extension. Cool! – mahboudz Sep 2 '09 at 5:35
I tried to use that command but it gave mi this error: -bash: syntax error near unexpected token `(' – José Joel. Jan 12 '10 at 15:02
That's because this particular for command is for the Windows command processor, not for the bash *nix shell. – lavinio Jan 13 '10 at 13:57
feedback

Similar approach for bash: for i in *.wav; do afconvert -f caff -d LEI16@44100 -c 1 $i ${i%.wav}.caf; done

link|improve this answer
feedback

found this:

##
## Shell script to batch convert all files in a directory to caf sound format for iPhone
## Place this shell script a directory with sound files and run it: 'sh converttocaf.sh'
## Any comments to 'support@ezone.com'
##

for f in *; do
    if  [ "$f" != "converttocaf.sh" ]
    then
        /usr/bin/afconvert -f caff -d LEI16 $f
        echo "$f converted"
    fi
done

Customize the aconvert options then save it as a text file called 'converttocaf.sh', place it in the directory of files you want to convert and run it from Terminal.

link|improve this answer
combined it with a bit of syntax from Randall's answer and my own conversion settings and it worked great! Thank you! – horseshoe7 Jul 25 '11 at 20:19
feedback

For the people who are using OSX and are a bit afraid of Terminal scripts I created a little application with Automator, this application converts the files you select.

Download here

link|improve this answer
feedback

If you are dealing with file names that contain spaces on Linux, try the following:

SAVEIFS=$IFS IFS=$(echo -en "\n\b"); for i in *.wav; do afconvert -f caff -d LEI16@44100 -c 1 $i ${i%.wav}.caf; done

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.