I'm taking this Android Programming class, and I have to work on a project now. My applications should be able to add some effects like reverb/echo/chorus/etc. to an audio track.
I tried using PresetReverb and EnvironmentalReverb but with no success (the app runs but doesn't apply any effect).
So now I'm trying to find some libraries that I could integrate and use in my project or other solutions. Could anyone give me some advice? (I already googled it and couldn't find anything) Thanks in advance!
Later EDIT (here is some code I used to add reverb effect from the android audiofx library):
rv = new PresetReverb(1, 0);
rv.setPreset(PresetReverb.PRESET_LARGEROOM);
rv.setEnabled(true);
player.attachAuxEffect(rv.getId());
player.setAuxEffectSendLevel(1.0f);
I checked out this solution too, but didn't work out for me. I tested my code on Genymotion Virtual Device Galaxy Nexus - 4.3 - API 18 and Samsung Galaxy Chat B5330.
Here is the github repo too: https://github.com/razvan-tudosa/android-mediaplayer