Tagged Questions
The soundpool tag has no wiki summary.
25
votes
2answers
1k views
How bad is Android SoundPool? What alternative to use?
I was looking at Android's SoundPool as a mechanism to implement sound effects in my generic game development library. It seemed ideal.
But a little bit of research indicates that there all kinds of ...
6
votes
1answer
1k views
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 is from 0.0 to 1.0
Tutorials I've seen recommend to calculate ...
5
votes
1answer
475 views
How to Sync Sounds using SoundPool
I have been trying to get a few sounds to play at the same time; currently i'm using a shared instance of SoundPool. I would like 1, 2 or 3 sounds to be played at the exact same time with no lag.
...
4
votes
1answer
538 views
What is the best way to get an audio file duration in Android?
I'm using a SoundPool to play audio clips in my app. All is fine but I need to know when the clip playback has finished.
At the moment I track it in my app by obtaining the duration of each clip ...
4
votes
1answer
917 views
Generate Sine Wave between 10 and 20000Hz using SoundPool
I attempted to generate a Sine Wave using AudioTrack initially. The result was not satisfactory. I then moved to the Soundpool class. I used Audacity to create audiofiles of 1 second and then modified ...
3
votes
1answer
338 views
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 for doppler or synthesis effects". So I tried to do this, using the ...
3
votes
1answer
350 views
Android the fastest way to load and play sound in application
I'm working on a project in which I have to load 6 different sounds in one activity and play all sound on button click.The sound file are not so big,but the problem is that maybe they will be more.So ...
3
votes
4answers
2k views
Soundpool sample not ready
I have a .wav file that I'd like to use across my game, currently I am loading the sound in onCreate() of each activity in the game.
soundCount = soundpool.load(this,R.raw.count, 1);
The sound ...
3
votes
4answers
818 views
Playing two sounds Simutaneosly
I am trying to play two sounds simutaneosly in android.I have created two MediaPlayers and am using the code below.They are currently playing one after another.Or not exactly one after another but ...
3
votes
1answer
495 views
How do I know if a sound is finished playing in android?
How do I know if a sound has finished playing?
I want to play 2 sounds but I want one sound to play and then wait until the 1st sound is done before the 2nd starts.
Also, if I wanted to do ...
3
votes
2answers
334 views
Why are my SoundPool sounds not playing simultaneously in onClick()?
When I click, the following code leads the two sounds to be played not simultaneously, but sequentially. Why are they not played simultaneously?
@Override
public void onCreate(Bundle ...
2
votes
1answer
43 views
Background music length and speed
For my Android app I would like background music. It doesn't have to go across activities so services do not matter.
Soundpool seems to stop playing the .ogg or .mp3 after about 6 seconds
MediaPlayer ...
2
votes
0answers
134 views
SoundPool error: no more track names available
I'm having troubles with the soundpool class. Here it goes:
In my game app (music app btw) I need to reproduce at least 32 short sounds at the same time, so I declare my soundpool like that:
private ...
2
votes
1answer
261 views
Android 2.2 - SoundPool sample 0 is not READY
I have searched StackOverflow and cannot find a situtation like mine. I am using four buttons with each button playing a sound file.
I am using SoundPool:
SoundPool sound = new SoundPool(4, ...
2
votes
1answer
76 views
Android, load mp3 on first activity and access it on activity further down
Is there a way to load a MP3 file into the soundpool in activity 1, then access it further down in activity 5?
I have been trying this with no success.
This is of course to cut down on load times ...
2
votes
1answer
600 views
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 sound pool class (thanks to a tutorial and some tweaking I did), and it works fine.
the problem now is ...
2
votes
1answer
1k views
Playing default ringtone
I've been trying to use SoundPool to play the default ringtone without success. In the code below
String ringtone = Settings.System.DEFAULT_RINGTONE_URI.getPath();
SoundPool ringPhone = new ...
2
votes
2answers
2k views
Android Soundpool problems
I've got an app on the Android Market and have been using the SoundPool classes for the sound effects. I've noticed that, of all the parts of the Android API, this seems to have caused me the most ...
2
votes
0answers
237 views
Android: Recording SoundPool output
I'm allowing the user to push buttons to play sounds via a SoundPool. Is it possible to record whatever the SoundPool is playing so that the user can record a sequence of sounds?
2
votes
2answers
1k views
How do I know that the Soundpool is ready using SDK target below 2.2?
This question is related to this one.
I managed to modify my code to use SoundPool instead of AudioManager. Know it works more or less.
public class Sound {
private static boolean sound = true;
...
2
votes
2answers
2k views
Playing multiple sounds using SoundManager
If I play a single sound, it runs fine.
Adding a second sound causes it to crash.
Anyone know what is causing the problem?
private SoundManager mSoundManager;
/** Called when the activity is ...
2
votes
2answers
2k views
Why is my SoundPool mute?
I setup my SoundPool, and load a sound resource as this in onCreate():
soundPool = new SoundPool(4, AudioManager.STREAM_MUSIC, 0);
soundId = soundPool.load(this, R.raw.edible_underwear, 1);
And ...
1
vote
2answers
55 views
Sounds do not play when loops set to -1 on Android
I'm using a SoundPool to play sounds for my Android app. All of the sounds are loaded up at the beginning of the app to prevent any lagging during the app itself. All sounds play fine as long as they ...
1
vote
1answer
101 views
Android stop SoundPool loop across multi activities. Or stop all playing sounds when changing pages
I have only been programming with Android and Java for a few weeks now, trying to make a guitar tuner to tune your guitar by ear. A simple reference tuner. I have used much of this website code to ...
1
vote
0answers
41 views
SoundPool (SDK 4.0.x) int loop, any value other than zero causes crash
I wonder if anyone can help.
I'm using
Android 4.0.x development kit
Win 7 64 bit platform
using the code as supplied in
http://www.droidnova.com/creating-sound-effects-in-android-part-1,570.html
...
1
vote
0answers
80 views
Seamless Looping with SoundPool on Android?
I am trying to loop short (20kb), gapless ogg files with the SoundPool class and cannot get consistent results while testing on hardware. It always plays back perfectly using the emulator but when I ...
1
vote
1answer
59 views
Soundboard App force closes and I can't figure out why
So I've been working on a soundboard app for my kids. This is my first app so as you can imagine I very nearly have no idea what I'm doing (noob) so I'm apologizing in advance :-). I'm not sure where ...
1
vote
2answers
52 views
SoundPool plays well when other tasks are running in the background and breaks when playing by itself
The strangest thing. When the animation is playing I hear my sound effect clear but when I don't have the animation playing the sound effect breaks. Here is the code:
private void Feedback(boolean ...
1
vote
1answer
98 views
Playing Audio files from SD card
I wanted to load files from the SD card into a SoundPool as well as ringtones. I am able to successfully get the path of the files, and I am able to play them with MediaPlayer. However, I need the ...
1
vote
0answers
66 views
Playing sounds very fast with Soundpool
I am creating an app that requires a sound or sounds to potentially be played every ~25ms. (300beats per minute with potentially 8 "plays" per beat)
At first I used SoundPool to accomplish this. I ...
1
vote
0answers
55 views
How to mix or append mp3 or wave files one after the other and save the resulting file onto the SD card in android?
I have some mp3 files in my /res/raw folder. What I am doing is that, whenever a user clicks on a button a respective sound is played and after he is finished with pressing all the buttons, I want to ...
1
vote
0answers
507 views
android soundpool heapsize overflow
I get this error hundreds of times when I run in Debug, it doesn't seem to affect the program, but how do I get rid of it?
I know it can be traced back to the SoundPool based on other posts
09-15 ...
1
vote
0answers
61 views
Using SoundPool to play clips in succession
I have created a game for Android Tablets where the player is solving simple math problems. I am working on making the game read each problem aloud. I have sound clip recordings of all of the numbers ...
1
vote
1answer
348 views
Android SoundPool.stop does not seem to work
I have created a class MySoundPool (I am using this class as sigelton, but don't think this is relevant as everyting else works). I am initianalizing SoundPool, a HashMap, and get the context for ...
1
vote
1answer
276 views
Android Static in OGG Audio using SoundPool
I'm creating an app where I need to load OGG audio files into a SoundPool, but it must be compatible with Android 2.1 (which does NOT support onLoadingCompleteSetListener). Because of this, there's ...
1
vote
2answers
214 views
Android soundPool supported Extension?
I wrote this code in the onCreate() method, but nothing was played !
SoundPool mSound = new SoundPool(1, AudioManager.STREAM_MUSIC, 0);
AudioManager mAudioManager = ...
1
vote
2answers
197 views
Can't change ringer volume after using soundpool (<2.1)
There is a problem, which occured very often.
I am using soundpool to play soundfx. One soundfx "silence.mp3" plays in a loop all the time, so I can change the volume anytime. If I change the volume ...
1
vote
0answers
421 views
Android SoundPool heap limits
I am using a SoundPool to load several sound clips into and play them back.
It is functioning 100% correctly from what I can tell. But during the .load() calls I am getting my log spammed with:
...
1
vote
2answers
513 views
MediaPlayer vs SoundPool for only 1 simultaneous stream
I'm working on a game in which one single sound is played each time the phone is shaked.
Does it make sense to use a SoundPool and load sounds in the onCreate of my activity, or is it ok to create a ...
1
vote
1answer
414 views
Why does AudioFlinger fail without programmatic indication?
I'm having a problem where SoundPool crashes, but gives no programmatic indication that is has crashed. After it crashes, it will not play any more sounds until the application is reloaded (exiting ...
1
vote
1answer
176 views
Android: What does this warning mean?
I have a button with a few sound effects. When I click the button, nothing happens. No sound is played, but no force close either. The Debugger is giving me this warning:
"SoundPool - Sample 1 not ...
1
vote
0answers
221 views
How does one play sounds asynchronously and simultaneously(polyphony) on Android?
Imagine a piano like touch based application. Now all that has to be done is to assign different sound files to different keys. I am using the SoundPool class but the following problems are happening:
...
1
vote
0answers
279 views
Problem sound volume when testing on a device
I play a very short and basic mp3 sound effect in my application. It sounds great on the AVD emulator but doesn't sound at all on my external device. I use the Android plugin for Eclipse on Mac OSX ...
1
vote
2answers
590 views
Knowing if the loading of a sound with SoundPool has been successful on Android 1.6/2.0/2.1
On Android 2.2+ there is something called SoundPool.OnLoadCompleteListener allowing to know whether a sound has been loaded successfully or not.
I am targeting lower API version (ideally 1.6 but ...
1
vote
1answer
143 views
Start audio as soon as the app is loaded Android App
I'm creating a game, and I have a few audio clips in the game. I'm using audio pool and I'm only using 2 audio clips. They are both mp3 format, 1 is 700kb and the other is 800 bytes.
I'm trying to ...
1
vote
3answers
647 views
Playing sound of a particular frequency in android
I want to play a sound of a particular frequency in android based on user input, somewhat similar to guitar application. Can anyone tell me how to do that? Do i need to have all freq sounds in the ...
1
vote
2answers
593 views
new File ( path ) always says that there is no file
my problem is a little bit tricky to describe.
I have a separated resources folder in my project (and in the apk-file).
String path = "/resources/instruments/data/bongo/audio/bong1.wav";
I can ...
1
vote
1answer
227 views
How can I load a sound from the SD Card insted of the raw folder in my Android app useing Soundpool?
I am useing this example to load and play sounds in my Androidapp. I am adding new sounds with mSoundManager.addSound(2, R.raw.sound1);. How can I load a sound from the SD Card insted of the raw ...
1
vote
1answer
1k views
Android onLoadCompleteListener how to implement?
I have a custom class called "Sound" with SoundPool, I want to implement the loading complete listener so that my activity can play an intro sound and display the "start" button once loading is ...
1
vote
1answer
229 views
Android - Sequential audio playback?
Tried both soundpool and mediaplayer but cant quite manage to get sound files to play back correctly in sequence without overlap.. Need to be able to playback three randomly selected audio files in ...