I am working on conference related application, i have first capture audio with CaptureSession, now I want to play the audio data dynamically without saving into file. I have tried with AVQueue it seems both CaptureSession and AVQueue won’t work together when I starts queue it stops capture, so What can I do now to play audio captured through CaptureSession?
thanks for your helps
I have fixed the problem using AudioUnit method, Note: when we process audio data captured in AVCapturesession using AudioUnit, we need to ensure AudioUnit is not trying to access capture devices (Mic in my case), that is the reason it stopped capture call back.