Undolog
Undolog

Reputation: 562

iPhone Audio Effects

I'm searching for Library, Framework or SDK for add audio effects in Objective-C, like reverber, echo etc...

Somebody knowns something?

Upvotes: 1

Views: 912

Answers (2)

Art Gillespie
Art Gillespie

Reputation: 8757

FMOD is a great suite of audio processing effects and runs well on iPhone.

There are a few good open-source collections, mda-vst, for example, but you'll have to hook them into iOS audio frameworks yourself. I'm not aware of any that are ready to go for iOS off the shelf.

Upvotes: 1

Paul R
Paul R

Reputation: 212929

Probably the best solution is to find a C library for the effects that you need. (Objective C code can call C library routines without any difficulty).

Upvotes: 1

Related Questions