1

I get sample of MixerHost from developer.apple and now i want that Mix Sound to save in another audio File, can any one Help me???

Aadil
  • 713
  • 2
  • 12
  • 30

1 Answers1

0

Use EXTAudioFileWriteASync to write the contents of the IOBuffer to an audio file object. This can be done in the render callback.

Then when you are done use ExtAudioFileCreateWithURL to save the audio to disk.

dubbeat
  • 7,706
  • 18
  • 70
  • 122
  • i had follow this post http://stackoverflow.com/questions/7118429/how-to-record-sound-produced-by-mixer-unit-output-ios-core-audio-audio-graph – Aadil Nov 23 '11 at 14:59
  • but i hv confussion in it can u Guide me – Aadil Nov 23 '11 at 15:00
  • You can try looking at a similar question I posted a while back. http://stackoverflow.com/questions/6930609/write-audio-to-disk-from-io-unit It will be very difficult to help you if you dont elaborate your question to be more specific about what in particular you are having difficulty with. Prehaps add code you have tried that does not work – dubbeat Nov 23 '11 at 15:06
  • also a google search of ' remoteio write to disk' will yeild lots of helpful examples. – dubbeat Nov 23 '11 at 15:07