Need help / suggestions for Android sound processing

I take this Android programming class and now I have to work on a project. My applications should be able to add some effects, such as reverb / echo / chorus / etc. to the soundtrack.

I tried using PresetReverb and EnvironmentalReverb , but without success (the application works, but has no effect).

So now I'm trying to find some libraries that I could integrate and use in my project or other solutions. Can anyone give me some advice? (I already looked for him and did not find anything) Thanks in advance!

Later EDIT (here is some code that I used to add the 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 this solution but failed for me. I checked my code on the Galaxy Nexus from Genymotion - 4.3 - API 18 and Samsung Galaxy Chat B5330.

Here is also the github repository: https://github.com/razvan-tudosa/android-mediaplayer

+4
source share
1 answer

I don’t understand you enough, but if you want to add the usual sounds of MediaPlayer , if you need sound effects, a href = "http://developer.android.com/reference/android/media/SoundPool.html" rel = "nofollow"> soundpool check thenewboston for a quick video tutorial on sounds and effects

-1
source

All Articles