vote up 0 vote down star

I have to record audio on an iPhone that will play back on Windows Media Player, using no non-standard codecs; that is, using no codecs that don't already ship with WMP. (Corporate requirement.) The audio has to go base-64 to a server, so I need to get the audio size as small as possible. Even at 8Kb recording frequency, AIFF files take ginormous amounts of space. I can't seem to find a compressed AIFF format that WMP will swallow.

flag

1 Answer

vote up 1 vote down

Best bet is to write WAV files with ulaw or alaw compression (the mFormatId of your AudioStreamBasicDescription would be kAudioFormatULaw or kAudioFormatALaw. Test to see which one gives you the smallest file sizes for your application.

Here's some code to set up an ExtAudioFile instance to write ulaw:

NSArray * docs = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString * docDir = [docs objectAtIndex:0];	
NSURL * outFile = [NSURL fileURLWithPath:[docDir stringByAppendingPathComponent:@"OutFile.wav"]];
AudioStreamBasicDescription asbd;
bzero(&asbd, sizeof(asbd));
asbd.mSampleRate = 11025; // or whatever
asbd.mFramesPerPacket = 1;
asbd.mChannelsPerFrame = 1;
asbd.mFormatID = kAudioFormatULaw; //or kAudioFormatALaw
ExtAudioFileRef theFile;
err = ExtAudioFileCreateWithURL((CFURLRef)outFile,
						  kAudioFileWAVEType,
						  &asbd,
						  0,
						  kAudioFileFlags_EraseFile,
						  &theFile);

Hope that helps.

--- ADDED ---

Here are modifications to the SpeakHere sample code to get ulaw compression:

SpeakHereController.mm:116

recordFilePath = (CFStringRef)[NSTemporaryDirectory() stringByAppendingPathComponent: @"recordedFile.wav"];

SpeakHereController.mm:158

recorder->startRecord(CFSTR("recordedFile.wav"));

AQRecorder.mm:192

SetupAudioFormat(kAudioFormatULaw);

AQRecorder.mm:215

XThrowIfError(AudioFileCreateWithURL(url, kAudioFileWAVEType, &mRecordFormat, kAudioFileFlags_EraseFile,
									  &mRecordFile), "AudioFileCreateWithURL failed");
link|flag
Hmmm, I'm using the SpeakHere code sample as a base, and managed to switch the file type and format to WAVE and uLaw with no problem. (The sample doesn't use the extended audio services, but it seemed similar enough.) The app records and plays back with no complaint. HOWEVER, weird thing is that it works if the file is written to NSTemporaryDirectory(), but not to a file in the app's Documents folder. Do you know why? – easydesign Nov 6 at 20:16
Exactly how is it failing? – Art Gillespie Nov 6 at 20:27
AudioFileCreateWithURL failed (-50) – easydesign Nov 6 at 20:35
-50 is paramErr. My guess is that if it's working with NSTemporaryDirectory() but not with another file URL, that the file URL isn't valid for some reason. What value are you passing for AudioFileCreateWithURL flags parameter? – Art Gillespie Nov 6 at 20:41
kAudioFileFlags_EraseFile – easydesign Nov 6 at 20:46
show 4 more comments

Your Answer

Get an OpenID
or

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