How to implement equalizer in Android2.1?

I want to implement Equalizer for Android 2.1, how to implement Equalizer in android 2.1? Can someone give me some sample code or link or idea for this?

+3
source share
1 answer

As far as I know, the only way is to use an external library like ffmpeg. To do this, you need to compile it using the NDK (because it is written in C), and then use it via JNI links. I have tried this for the last 3 (full) days, and if you don't know anything about C, it's just awful ...

+1
source

All Articles