Audio recording error kAudioQueueErr_CannotStart on iPhone OS 3.0 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T09:01:06Z http://stackoverflow.com/feeds/question/1081420 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081420/audio-recording-error-kaudioqueueerrcannotstart-on-iphone-os-3-0 0 Audio recording error kAudioQueueErr_CannotStart on iPhone OS 3.0 Jeremy Borden 2009-07-04T03:22:14Z 2009-07-27T02:26:43Z <p>I'm working on a couple different iphone apps that both record and play sounds concurrently. Think multitrack mixing... play one sound a save it then listen to that sound while recording the next sound to another file. My mechanism for this has been to start up two different audio queues, one for recording, and one for playing.</p> <p>This was working A-OK until the release of OS 3.0... Since then, however, the following happens:</p> <p>If I start the recording queue first, it supposedly starts fine, but the call to AudioQueueStart for the playback queue returns kAudioQueueErr_CannotStart.</p> <p>If I start the playback queue first, it also supposedly starts fine, but the call to AudioQueueStart for the record queue returns the same error, kAudioQueueErr_CannotStart.</p> <p>Anyone have any luck debugging this error? Seems like maybe the two queues are stomping on each other's memory or something? The official description is: "The audio queue has encountered a problem and cannot start." Not super helpful...</p> <p>Jeremy</p> http://stackoverflow.com/questions/1081420/audio-recording-error-kaudioqueueerrcannotstart-on-iphone-os-3-0/1081772#1081772 0 Answer by Rhythmic Fistman for Audio recording error kAudioQueueErr_CannotStart on iPhone OS 3.0 Rhythmic Fistman 2009-07-04T08:02:21Z 2009-07-04T08:02:21Z <p>Maybe I'm wrong, however I have a feeling that only one (active?) audio queue can exist at a time.</p> <p>You may need switch your output audio queue to an audio unit (Remote IO).<br /> And AudioQueues are kind of lame for playback, so an audio unit couldn't hurt.</p> <p>This guy managed to do it, and talks about it in this <a href="http://michael.tyson.id.au/2009/02/15/developing-loopy-part-2-implementation/" rel="nofollow">blog post</a>.</p> http://stackoverflow.com/questions/1081420/audio-recording-error-kaudioqueueerrcannotstart-on-iphone-os-3-0/1086535#1086535 1 Answer by invalidname for Audio recording error kAudioQueueErr_CannotStart on iPhone OS 3.0 invalidname 2009-07-06T11:34:15Z 2009-07-06T11:34:15Z <p>It's kind of a cliche answer, but did you use the audio session API to set your audio category to "play and record"? You have to do this in order to reserve the microphone for your app's use. There were a bunch of changes to audio session in 3.0 (to create the obj-c convenience class AVAudioSession, and to define some new categories), so it's possible that changes there might be messing you up.</p> <p>BTW, if you're not on the coreaudio-api list (lists.apple.com), you should be. The community and the Apple engineers there are really helpful.</p> http://stackoverflow.com/questions/1081420/audio-recording-error-kaudioqueueerrcannotstart-on-iphone-os-3-0/1186178#1186178 0 Answer by taotao for Audio recording error kAudioQueueErr_CannotStart on iPhone OS 3.0 taotao 2009-07-27T02:26:43Z 2009-07-27T02:26:43Z <p>Hi,</p> <p>I also met same problem, any suggestions how to fix it. Thanks in advance :-)</p>