Android API : The SoundPool class manages and plays audio resources for applications
8
votes
2answers
635 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 ...
1
vote
2answers
496 views
Looping track with soundpool
i need to loop without lag a music in my app. In android < 4.0 I used mediaplayer and all went right. In android > 4.0 the same code is not able to loop without an important lag.
So I tried to ...
1
vote
2answers
269 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 ...
8
votes
1answer
715 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 ...
6
votes
1answer
2k 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 ...
6
votes
1answer
1k 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.
...
5
votes
1answer
545 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
1answer
104 views
Load and play sounds from sd card?
I have button that plays sounds using SoundPool. I want to open my app and load sounds from SD Card and then play them with my button. Can anyone give me an example how to do that?
This is my Java ...
2
votes
1answer
744 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
136 views
Waiting for SoundPool to load before moving on with application
I was following a tutorial to integrate SoundPool into my app, and this is the code which was given in the tutorial:
package com.example.soundpoolexample;
import android.app.Activity;
import ...
1
vote
1answer
158 views
SoundPool.OnLoadCompleteListener being blocked
I'm trying to load a sound so that it is available to be played later in my activity, and I want to ensure that it has finished loading before I finish onCreate (sometimes it will be played pretty ...
1
vote
1answer
80 views
Concurrency in SoundPool and MediaPlayer?
I dunno if my sounds are just too quiet but right now I am programming a Rhythm game for Android and when you open it on the menuActivity (where you can press "Play" "Options" "About" and "Exit), it ...
1
vote
1answer
55 views
Soundpool diffrent streamid
I have soundpool that will load file from sd-card and I used mstreamID to stop it and I use mstreamID in OnLoadCompleteListener so the files can load..I use 2 buttons to play soundpool diffrent ...
1
vote
1answer
228 views
SoundPool not playing after 3 second of opening my activity
I am trying to play a sound when a user clicks on a button, This works well if I click the button wothin the first 3-5 seconds of when the activity is open however if I wait more then 3-5 seconds ...
1
vote
1answer
194 views
Android SoundPool logs info as error
I'm developing an Android App using the SoundPool. Every time I play a sound, an error gets logged in LogCat of the type:
E/SoundPool(11873): sampleID=33, leftVolume=0.779528, rightVolume=0.779528, ...
1
vote
1answer
1k views
How to play multiple ogg or mp3 at the same time..?
I'm trying to play 20 ogg files at the same time using MediaPlayer.
This is because I want to make a mixing effect.
While one music is playing, other files also have to be played.
Actually, I already ...
1
vote
1answer
1k 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
1answer
302 views
How to prevent SoundPool from truncating sounds
I have a soundboard app and I use SoundPool to control the playback of my sounds. Everything worked great until I tried to add a sound that was about 30 seconds long. When I click the button for that ...
1
vote
1answer
420 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
471 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 ...
0
votes
1answer
12 views
Application load time is so slow when using many sounds in Soundpool… any substitutions?
Long story short, I am making a soundboard. Short clips, so by researching, Soundpool seemed like the best option. It has worked out phenomenally for me, except that the overall load time is getting ...
0
votes
1answer
20 views
android : play short sound with short evoluting period using SoundPool
I want to implement a sort of radar we can find on cars to help parking. On a service that is correctly connected to my activity by a binder, I start a thread that must repeat a short sound.wav (110ms ...
0
votes
1answer
26 views
How can I play sounds in specified times? (Simulating recording in my app)
I want to implement recording in my piano app. to do this, I save the time of playing of each sound and which one was played in a LinkedList. To play the recorded music(sequence of sounds) with this ...
0
votes
1answer
37 views
How many native audiotracks are reserved by the SoundPool object?
If I create a SoundPool object with 20 concurrent streams
new SoundPool(20, ...)
How many native AudioTrack objects will be reserved by the this SoundPool object ?
Is the native implementation of ...
0
votes
1answer
78 views
How to load sounds gradually in soundPool (Android)?
I'm doing a soft keyboard with sounds. For each character is some sound. When i clicked to input field it takes a very long time before the keyboard appears ( 3-4 seconds). Because I must load each ...
0
votes
1answer
48 views
Overriding the default click noise?
By default, on my phone, clicking on apps, widgets, home button, etc makes a click noise. How do I override that click noise in a widget? I have a widget that plays a noise on click but right now it ...
0
votes
1answer
163 views
Make some audio effects and store it in a mediaplayer
I need make some audio effects on a list of recordings in .3gp format that was stored into device.
The audio effects that I need are the addition of reverberant sounds or the mixing with another ...
0
votes
1answer
78 views
SoundPool Loading Never Ends
Here is my code:
import java.util.Locale;
import android.app.Activity;
import android.content.Context;
import android.media.AudioManager;
import android.media.SoundPool;
...
0
votes
1answer
175 views
Soundpool with loop not working properly
I have a sound clip play while I am displaying some numbers, then want it to stop. Then I want to repeat the process.
init stuff:
private SoundPool soundPool;
private int soundRoll;
...
0
votes
1answer
239 views
How to play a short sound on button click using soundPool?
i have 5 buttons. i want to play short sound every time a button is clicked. Each button will play a different sound from my raw folder. Currently, i can play a sound from the 1st button but how do i ...
0
votes
1answer
93 views
Android: playing many short media files
I am wring a program to play with about 1000 short media files which are stored in "raw". My programe is simple. It plays a new media file each time a button is clicked. The name of media file is read ...
0
votes
1answer
199 views
Android SoundPool: AudioFlinger error
My SoundManager class uses SoundPool for it's audio. I have a sound that will loop, 1 second on and 2 seconds off until told to stop. The problem is that this will execute once and then I notice an ...
0
votes
1answer
134 views
Using another sound engine
Im currently working on a project where the audio is a big thing. I have about 20-30, 3-4 secound clips as is supposed to be played (Max two at a time). (Clips are max 180kB each) And im also planing ...
0
votes
1answer
61 views
VideoView with soundPool at single time
How can I realize it? VideoView is working fine, but there is no sound from soundPool.
soundPool = new SoundPool(4, AudioManager.STREAM_MUSIC, 100);
soundsMap = new HashMap<Integer, ...
0
votes
1answer
372 views
Android “unable to load sample (null)”
I am facing a vague issue with sound manager. Only the first sound that I load, works. The 2nd sound does not.
Initialization, here WRONG_SOUND does not load.
Globals.mSoundManager = new ...
0
votes
1answer
165 views
Soundpool stop issue?
Soundpool stop function not working. I have many images which image is in the view that time i need to play that image related sound, I tried using soundpool object music is playing nice.but my ...
0
votes
1answer
237 views
SoundPool stops playing
I have a button that when pressed sounds a short sound effect with SoundPool. the file is a 16k mp3.
The sound effect works for hundreds of button clicks, but at some point i get this error (and the ...
0
votes
1answer
96 views
Android Soundpool VS Vibrator
I have to let the Smart phone vibrate and simultaneously play a sound.
I tried something like this:
soundPool.play(sID, 1.0f, 1.0f, 1, 0,1.0f);
vibrator.vibrate(90);
The Problem is that the Phone ...
0
votes
1answer
466 views
Play Sequence of audio files with SoundPool class of Android
I have three sound files in raw folder. I want to play them one after another with no delay between them. I tried them playing with below code but all three files are playing together, not one after ...
0
votes
1answer
349 views
Android: SoundPool not working after App gets terminated
I've noticed a strange problem: My app uses SoundPool to play sounds. When I terminate the App with the back key while some sounds are playing, SoundPool will not work correctly the next time I start ...
0
votes
1answer
295 views
Audio will not play when awakened from sleep mode (android)
I'm writing an Android alarm app. I can get the activity to come up all right when the alarm is triggered (it wakes the phone up, turns off the keyguard and shows the alarm view), but I can't for the ...
0
votes
1answer
444 views
Record and Mix Audio Real-Time in Android
Is it possible to record audio from an microphone on an Android device and then combine it with whatever the phone is currently playing at real-time? This is the premise of my app, so before I can ...
0
votes
1answer
445 views
Android SoundPool left / right volume
I want to play mp3 file ONLY the right channel. -> left channel, set volume: 0 (muted)
I tried :
public class TestSound {
private SoundPool soundPool;
private int id;
public ...
0
votes
1answer
425 views
Android: Random Sound FX on Button Click
I'm trying to play a random sound FX on a button click using the soundpool. This works in the emulator but not on my device. Any clues?
public class enc extends Activity {
private static final ...
0
votes
0answers
50 views
Does SoundPool mix on the CPU or on dedicated hardware?
I'm wondering about the CPU impact of playing many different samples (like sound effects in a game) via SoundPool concurrently. Is the actual mixing performed by dedicated DSP circuitry, or is it all ...
0
votes
0answers
55 views
Synchronize sound with the game's actions
I have some sound files for a game. The game has a few airplanes which flyes with different speed. When I destroy them, they begins fall down with the current speed. So they becomes the ground in the ...
0
votes
0answers
335 views
How to tell if a sound is still playing in soundpool
I wish to play series of sounds using soundpool, but want to wait till each sound has completed before starting the next one. I can not find any .isPlaying() type function. Is there one?
0
votes
0answers
71 views
Android SoundPool NoClassDefFoundError
I am trying to play a sound with soundPool, but it gives me an error:
05-25 16:11:57.614: D/dalvikvm(275): Trying to load lib /system/lib/libsoundpool.so 0x0
05-25 16:11:57.623: D/dalvikvm(275): ...
0
votes
0answers
623 views
SoundPool wrapper problem
I'm writing a sound system for a game I'm planning to start. I'm working on Android 2.2, and I followed the tutorial here. The app works fine when the SoundPool is accessed directly from the ...
0
votes
0answers
272 views
Android SounPool not Overlap
I have 3 sounds that I would like to play sequentially in Android. I have created a SoundPool and set the "maxStreams" to "1" thinking that in the for loop the sounds would play "one at a time" not ...