Nareshkumar
Nareshkumar

Reputation: 2351

iphone recording to an existing file

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

Answers (1)

RunLoop
RunLoop

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

Related Questions