Reputation: 2351
I beleive most of this is going for the database tag but my question is specifically on AVAudioRecorder. Lets say i recorded initially to a file using AVAudioRecorder in the .cif format. I want to record someother sound which will append to the recorded file. The recorder will usually overwrite if there is an existing file of that name while initiating.
Upvotes: 0
Views: 793
Reputation: 20376
AVAudioRecorder is not able to append to a recording once created. To do that, you would need to use Audio Tools. See Apple's SpeakHere example.
Upvotes: 7