is there a finished playing callback with finch? similar to - audioPlayerDidFinishPlaying in the avaudioplayer stuff? looking through the code i could not find anything that referenced it.
I want to be notified if headphones are plugged in or plugged out. I'm currently doing this using a property listener like this:
AudioSessionAddPropertyListener (kAudioSessionProperty_AudioRouteChange, myCallback, self);
This works perfectly well in all ...
My app has an audio recording callback which is called by the RemoteIO AudioUnit framework. The AudioUnit calls the callback in a thread different from the main thread, so it does ...
I'm just having a horrible time getting a simple Audio Unit-based app running on the iPhone. I've worked through Michael Tyson's example, as well as Tim ...
I am currently working on an audio processing app on iPhone. it is based on Apple's SpeakHere sample code, aims at real-time audio processing and playback. The code works well in ...
Does anyone have a good example of using CARingBuffer to buffer a large audio file and how to read it in a callback?
Should it be reading the audio file in a ...
Can we write the audio buffer in to a file that we get as part of Remote IO callbacks?
Is recording and storing the recordings to a file restricted to AVAudioRecorder?
NEED A ...
What is the correct way to implement a callback on the RemoteIO after the aumixer has done it's thang.
If i use ;
result = AUGraphSetNodeInputCallback(mGraph, outputNode,1, &remoteIOCallback);
It doesn't call my function
If ...
( I'm dual posting on the Apple Dev forums too...)
I'm playing several sounds, and they have to be played in sequence ( random ), so that when one finishes, the next ...
Is it possible to play an audio file from the user's ipod library and have a callback occur whenever the player reaches a certain time point ? I need it to ...
If I put device into silent mode using switch, AudioServicesAddSystemSoundCompletion callback method doesn't get called. If the switch is on, I mean if device is NOT in silent mode, method gets ...