Top "Soundpool" questions

Android API : The SoundPool class manages and plays audio resources for applications

Playing audio file from Sdcard

I would like to play an audio file from the sdcard. How can I read the audio file and play …

android soundpool android-file
Playing Multiple sounds at the same time in Android

I am unable to use the following code to play multiple sounds/beeps simultaneously. In my onclicklistener I have added: …

android audio soundpool
Playing default ringtone

I've been trying to use SoundPool to play the default ringtone without success. In the code below String ringtone = Settings.…

android ringtone soundpool
AudioFlinger could not create track, status: -12; Error creating AudioTrack

I am having a problem With SoundPool as it refuses to work with my .ogg files. I am getting this …

android soundpool
Soundpool plays only first 5 secs of file. Why?

I use Soundpool in my app, so far it works good, but I do have a wav file which is 10 …

android soundpool
Android SoundPool: get notified when end of played

This sound so simple that I can't figure out why I can't find the answer lol I have a working …

android soundpool
Android : How to change Playback Rate of music using OpenSL ES

I am working on a music player in which I need to change tempo (playback speed of music) without changing …

android audio multimedia soundpool audiotrack
stream volume in SoundPool vs volume in AudioManager

I am so confused... SoundPool.play(int soundID, float leftVolume, float rightVolume, int priority, int loop, float rate) volume here …

android soundpool android-audiomanager
Android audio : change pitch

The Android documentation for SoundPool says "the application can also alter the pitch by adjusting the playback rate in real-time …

android audio signal-processing soundpool
How to stop playing a Sound via Soundpool?

Please, have a look at those pieces of code: private SoundPool soundPool; private int soundID; soundPool = new SoundPool(10, AudioManager.STREAM_…

android soundpool