Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AVAudioEngine documentation

I'm trying to find a detailed documentation for how to work with AVAudioEngine. Does anyone know where I can find it?

I've found this, but it seems extremely spartan in comparison to the richly documented UI stuff.

https://developer.apple.com/documentation/avfoundation/avaudioengine

Is this it? Are there header files somewhere I can at least peruse, like there was with AUGraph (before they deprecated it).

like image 627
Leonhard Printz Avatar asked Aug 17 '18 15:08

Leonhard Printz


People also ask

What is AVAudioEngine?

An object that manages a graph of audio nodes, controls playback, and configures real-time rendering constraints.

What's new in AVAudioEngine?

AVAudioEngine now has a voice processing mode. The main use case for the mode is echo cancellation and voice-over IP applications. What does this mean? When enabled, extra signal processing is applied on the incoming audio, and any audio that is coming from the device is taken out.


1 Answers

You can also try Apple's official sample code at

https://developer.apple.com/library/archive/samplecode/AVAEMixerSample/Introduction/Intro.html#//apple_ref/doc/uid/TP40015134-Intro-DontLinkElementID_2

like image 195
DJTano Avatar answered Sep 27 '22 19:09

DJTano