How to Implement equalizer for audio streaming IOS application. We have already implemented audio streaming application on IOS SDK. We need to create equalizer with audio streaming. Please share your ideas.
Asked
Active
Viewed 1,881 times
1 Answers
1
New in iOS9
you can feed a AVAudioCompressedBuffer
which might be useful for you or if you need to target iOS8
you could use AVAudioPCMBuffer
.
Once you have the stream in a buffer, you could use AVAudioEngine
and connect the input to an AVAudioUnitEQ
node.
For examples, look at: AVAudioUnitEQ / .BandPass filter doesn't work
Tap Mic Input Using AVAudioEngine in Swift

Community
- 1
- 1

Justin Levi Winter
- 2,327
- 2
- 17
- 30