I want to implement Equalizer for android 2.1, how to implement Equalizer in android 2.1? Can anyone give me any sample code or reference or idea for that?
Asked
Active
Viewed 1,256 times
4
-
Equalizer e = new Equalizer(); e.setVisible(true); – Viktor Sehr Jun 07 '11 at 07:00
-
Equalizer class is available for API level 9, which is for android 2.3. I have to implement for android 2.1 i.e api level 7. – dev_android Jun 07 '11 at 12:24
1 Answers
1
As far as I know, the only way is to use an external library, like ffmpeg. It requires to compile it using the NDK (because it's written in C), and then using it via JNI links. I've been trying that for the past 3 (full) days, and if you don't know anything about C, it's just awful...

elgui
- 3,303
- 4
- 28
- 37