Tagged Questions
CAF (Core Audio Format) is a container audio file format developed by Apple. CAF files can contain audio data of a variety of different formats and are not limited to 4GB in size. The format is used by certain Apple products (such as Apple Loops) and is supported on both Mac OS X and iOS platforms.
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 ...
2
votes
1answer
324 views
convert caf on iphone or on server for sharing
I have an app that records short sounds (as caf files) and uploads them to a server. I want to be able to share these sounds so they need to be in a more ubiquitous format like mp3. I've got a linux ...
1
vote
1answer
470 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 ...
1
vote
1answer
288 views
How to resolve “Hardware In Use” issue (error code: 'hwiu')?
I have created an iPhone app with recording with AudioUnit, Conversion, Audio Editing and Merging parts. I done everything except Conversion. This app will work only in iOS 4 or higher.
I tried to ...
1
vote
1answer
519 views
combine two .caf files
I have used below code to combine two .caf files.
NSMutableData *datas = [NSMutableData alloc];
NSData *data1 = [NSData dataWithContentsOfFile:path1];
NSData *data2 = [NSData ...
1
vote
3answers
528 views
Sound working in emulator, not in real iPhone
Have few short sound effect samples, which play just fine in emulator, but not at all in real iPhone 3GS. Here's the code, about as-is from Apple SysSound sample:
CFBundleRef mb = ...
0
votes
2answers
174 views
Combine two .wav files in iPhone using Objective C
I want to combine two .wav recording files together.
Can any one help me figure out how to achieve this.I tried combining the data but the headers are creating problem.
Can we do the combining as we ...
0
votes
0answers
122 views
displaying waveform in xcode [closed]
Possible Duplicate:
rendering a waveform on an iphone
Efficient method to draw a line with millions of points
Can anyone please help me with displaying the waveform of an audio file in ...
0
votes
0answers
86 views
Is it possible to load a compressed audio file directly into a buffer, without conversion?
I am developing an iOS app that must handle several stereo audio files (ranging from a few seconds to four minutes in duration) at once, playing up to three back simultaneously, synched through a ...
0
votes
0answers
245 views
ios - How to use ExtAudioFileConvert sample in a new project
All I wanted was to read a caf file and write it to another file, in the hopes that perhaps I can manipulate it such as combine multiple files into one, or trimming. So I found Apples's own ...
0
votes
1answer
266 views
how to read pcm data from apple caf file
how to read pcm data from apple caf file?
I want get a headless pcm data
1.
NSData data = [NSData dataWithContentsOfFile:(NSString)cafFile];
2.
NSString audioFilePath = (NSString)cafFile;
...
0
votes
0answers
105 views
SharePoint 2010 - Experience with the MSO CAF? (Micrsoft Online Code Analysis Framework)
What is your experience with the Code Analysis Framework?
Wrong error messages, overlooked error messages etc.
Error List:
SPDispose Check and the SPSiteRootWeb - Wrong SPDispose Error Dispose ...
0
votes
0answers
472 views
How to convert from CAF audio (iLBC) to WAV or MP3
Well that one was asked a lot..
How can I convert an Apple caf (iLBC) audio file to wav or MP3 on Linux (using a command line) ??
Is it a dead end?
or did someone found a proper solution for it?
0
votes
0answers
420 views
Convert CAF to MP3 or WAV in Ubuntu [closed]
I have a CAF server on my Ubuntu 9.10 server and I need to convert them to MP3 or WAV. I have already tried with pacpl and ffmpeg, but it didn't work (I don't have the right encodings in Ubuntu).
...
0
votes
1answer
440 views
play caf file in browser [closed]
Possible Duplicate:
Play Apple's .caf audio file on a webserver?
Is there a player around that lets me play .caf files in browser?
Can be any solution even flash...
0
votes
1answer
93 views
Apple *.caf files in HTML5 <audio> tag
Can I include *.caf files in HTML5 tags or do I need to convert them first?
0
votes
2answers
298 views
Looping through the samples of CAF file
Could anyone give me a suggestion or an example of how I would loop through the samples of CAF (Core Audio Format) file? Like taking the first 1000 samples and changing them to 0?
Something like:
...
0
votes
1answer
216 views
The codec could not be accessed. (-66672)
I am trying to convert caf file to m4a file using AudioUnit. I have implemented the code to convert. When I tried to run the application, I am getting following error message;
couldn't set ...
0
votes
1answer
581 views
merge CAF (core audio format,Linear PCM) file into a video(mjpeg) file using ffmpeg (programatically)
As the title said, I have a CAF file and I want to insert that file into a video file using ffmpeg(Programmatically ) using C.
CAF file has Linear PCM audio format
I am successfully able to build ...
0
votes
1answer
1k views
Converting mp3 to caf file for iPhone
I am experimenting with the sampling rate of the mp3 file to convert it into caf format.
afconvert -f caff -d LEI16@44100 ./fricatives_play_all.mp3 ./test.caf
afconvert -f caff -d LEI16@22100 ...
0
votes
1answer
296 views
Developing SDK 3.1.2 compatible audio.caf Files
Apparently SDK 3.1.2 has a built in discrimination about certain audio.caf files being passed to AVAudioplayer.
Some files that worked fine with SDK 3.0.1 get a returned content null from ...
0
votes
3answers
1k views
playing a .caf file: works fine in simulator but not in iPhone
I'm building a voice recorder. Recoding and playing works fine on simulator. But on iphone it doesn't work. (I followed the exact steps as mentioned in ...
-1
votes
1answer
670 views
iPhone: Recording to CAF Files Produces Only Static
I am developing an iPhone voice recording application which creates audio files in caf format.
When I play those files back, the only thing I here is static. Also, the sizes of the files are huge ...
-2
votes
1answer
41 views
Where to find quality audio samples for looping [closed]
I am working on a musical instrument app for iPhone and need sample sounds that I can use for the various wind instruments. I'll be using OpenAL with looping, so a 1 second sample that is spot-on ...