up vote 22 down vote favorite
44
share [g+] share [fb]

I am using the SoundEngine sample code from Apple in the CrashLanding sample to play back multiple audio files. Using the sample caf files included with CrashLanding everything works fine but when I try and use my own samplesconverted to CAF using afconvert all I get is a stony silence ;)

Does anyone have settings for afconvert that will produce a CAF file capable of being played back through OpenAL?

link|improve this question

Thought I'd push you over the "999" edge, Dave ! – user279521 Jul 28 '10 at 17:24
feedback

4 Answers

up vote 55 down vote accepted

Answering my own question...

afconvert -f caff -d LEI16@44100 -c 1 in.wav out.caf
link|improve this answer
May I ask how or where did you find out the answer? – Sergio Acosta Oct 31 '08 at 22:54
I also asked the question on the official iPhone SDK forums – Dave Verwer Nov 1 '08 at 8:11
1  
The info is in the iPhone Application Programming Guide. Also mentioned in Audio & Video Coding How-to's. – Kristopher Johnson Dec 10 '09 at 13:45
feedback

Simple bash script to convert the mp3 files in a folder to caf for iphone

#!/bin/bash
for f in *.mp3; do
  echo "Processing $f file..."
  afconvert -f caff -d LEI16@44100 -c 1 "$f" "${f/mp3/caf}"
done
link|improve this answer
To make the script more compatible with different file types, I modified the afconvert line to: afconvert -f caff -d LEI16 "$f" "${f/mp3/caf}" otherwise I would get errors – Jay Dec 17 '10 at 4:28
Can you tell me where do I store this string ? I don't know anything abouy bash script. In which format I have to store it ? – Devang Sep 10 '11 at 7:03
Is it possible for Mac or windows ? – Devang Sep 10 '11 at 7:40
feedback

thanks for the info.

also, if you're looking into additional compression with openAL, this might be of interest:

"iPhone, OpenAL, and IMA4/ADPCM" http://www.wooji-juice.com/blog/iphone-openal-ima4-adpcm.html

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.