vote up 0 vote down star

These are the values I pass in, it's the only combination of values I have got working.

dataFormat.mSampleRate = 44100;    
dataFormat.mFormatID = kAudioFormatLinearPCM;
dataFormat.mFormatFlags = kAudioFormatFlagIsSignedInteger | kLinearPCMFormatFlagIsBigEndian;
dataFormat.mBytesPerPacket = 4;
dataFormat.mFramesPerPacket = 1;
dataFormat.mBytesPerFrame = 4;
dataFormat.mChannelsPerFrame = 2;
dataFormat.mBitsPerChannel = 16;

status = AudioQueueNewInput(  &dataFormat, AudioInputCallback, self, NULL, NULL,  0,  
				   &queue);

status = AudioFileCreateWithURL(fileUrl, kAudioFileCAFType, &dataformat, kAudioFileFlags_EraseFile, &audioFile

The recording works, but it is a lot of noise during the recording, and on the playback. Can it have anything to do with this code?

flag

50% accept rate

1 Answer

vote up 0 vote down

What's your input device? The mic on the provided earbuds or the phone's built-in mic or what? Or are you recording into the Simulator?

Aside from the noise, does everything else sound right: speed, pitch, etc.?

It probably isn't causing any problems, but you're specifying two-channel input, while your input device is probably mono.

One last thought: is this a first generation iPhone? I think there's a weird issue with that model where 8 KHz input gets upconverted to 44.1.

link|flag
OK, Bill just said on coreaudio-api list that the rumored first-gen iPhone upsampling thing is a bogus. My bad. – invalidname Jul 6 at 20:20

Your Answer

Get an OpenID
or

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