Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
4answers
25k views

Converting audio to CAF format for playback on iPhone using OpenAL

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 ...
4
votes
4answers
6k views

How do I use afconvert to convert all the files in a directory from wav to caf?

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 ...
1
vote
1answer
471 views

How to convert iphone's caf to ogg on ubuntu

i really need your support to solve that problem: We developed an iOS application that sends a sound file to our server and then, we share this audio. The problem is we didnt find any solution to ...
0
votes
0answers
56 views

Obtain progress of afconvert

I'm writing a simple script to automate some video conversions, and I'm using Apple's afconvert to convert the audio to aac (libfaac has really bad quality). I would like to obtain the progress of ...
0
votes
0answers
135 views

How to get an adts package with afconvert

i would like to get an atds package with aacp inside with the help of afconvert. This seems to work afconvert -f 'adts' -d 'aach@44100' -b 52600 in.mp3 out.aac however this don“t afconvert -f ...
0
votes
1answer
449 views

afconvert in iPhone reference library

Can you give me some information about using afconvert in iPhone to convert file formats? Or let me know some links that give me basic information on afconvert. I want to know the commands used - ...
0
votes
1answer
288 views

CAFF creation on Windows (or Linux)

On OS X I use this command to convert a sound file to CAFF for iPhone. afconvert -f caff -d LEI16@44100 file.wav file.caf I need to do the same on a Windows box. Any clues? I'd even settle for a ...
0
votes
1answer
2k views

Error converting wav to caf for the iPhone using afconvert

Here's the command I'm typing in a Terminal window: afconvert -f caff -d LEI16@44100 -c 1 buzzer.wav buzzer.caf Error: ExtAudioFileOpenURL failed ('dta?') Notice that buzzer.wav is my sound file. ...