Android API : The SoundPool class manages and plays audio resources for applications
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
0answers
43 views
Countdown timer sound in onTick issue: plays once but stops at 5secs before finish
I'm trying to start playing a sound when countdown timer is 10secs before finish. I've put the above in onTick method(tried without runnable also):
@Override
public void onTick(long ...
-2
votes
0answers
13 views
Loop with deliberate space between tracks in SoundPool [closed]
I'm making a metronome app for Android. (Yes, I know there are already a bazillion.) I've got the UI basically hammered out, but can't figure out how to loop a sound with precise amounts of space in ...
1
vote
1answer
28 views
Is there anything wrong with exending Activity in order to use runOnUIThread?
I have a class defined like so: (I have pages of code, but I'm only posting the relevant parts for readability).
Now, there's nothing 'wrong' with it, per se and it works great, but someone told me a ...
0
votes
1answer
16 views
How to access soundPool from a thread other than main/UI?
I have my main Activity class, a Renderer class and my custom soundPool class (called soundMan) and I can create and access SoundPool(I.E. soundMan) objects within my Activity class without too many ...
1
vote
1answer
62 views
How to play multiple sounds simultaneously in Android?
I've been trying to make multiple sounds work simultaneously but I kept getting errors like Sample not ready and Error creating AudioTrack. Though I've taken care of the first error, the other error ...
1
vote
1answer
33 views
soundPool.load() inside (wait) Thread?
Hey I want to load sounds on a soundPool inside a Thread which contains a sleep command. The block I am talking about looks like that:
Thread wait = new Thread() {
@Override
public void run() ...
0
votes
0answers
29 views
Media player stops on playing continuously for >20 times(& Sound Pool Help)
I have a simple "Press the button - Play the sound" need. For which I want to play a sound for as long as the user clicks buttons.
Problem is that after pressing such many times, the Media player ...
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
2answers
46 views
my soundpool project won't play properly?
I've been trying to implement this soundpool class (with some help from a tutorial) but when I try to run it on a virtual device, the sound won't play... The main_activity XML file loads fine, but it ...
0
votes
0answers
25 views
How to mix / merge / overlap two sound files in android? [duplicate]
I want to mix/merge/overlap 2 sound files in android.
First from library and second recording from phone mic.
Any pointers where I can see a tutorial about the same?
I can do that in Java. But not ...
0
votes
1answer
25 views
How to know when the sound finsihed playing using soundPool
I am using sound pool to play a short sound files in android, but I want to play the sounds at for example, If I clicked a button to play a sound and clicked the button again, I don't want to play the ...
0
votes
4answers
100 views
play sounds on touch on image
am developing an application which play sounds when user touches on a image.
i create my own sound file. in this case i have 3 doubts,
In which folder i need to place sound file.??
which method is ...
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
0answers
17 views
How can I store events & their time in my application?(simulating recording sounds in a musical instrument app)
I am developing an application with some buttons in it. When a button is touched, the application plays a sound with SoundPool method. Users can play music with this app like a piano app. For ...
0
votes
0answers
22 views
Using soundPool to play an audio but audio's name is a resulted string from another method
To load a certain audio (with certain name) from res/raw folder to soundID variable with soundPool we use this code:
soundID = soundPool.load(this, R.raw.picture, 1);
But I don't know how to use ...
2
votes
0answers
34 views
Loading Sounds for SoundPool effectively (Global SoundPool?)
I'm creating a game which has a series of sounds to be played on different activities.
Loading the sounds in onCreate hampers the FPS dramatically, I'm wondering is there a more efficient way to load ...
0
votes
0answers
12 views
Using soundpool with sensor
I have to create an application where a song plays and according to the position of the phone the song will play faster or slower.
For example , the song is playing if I'm holding the device up ...
0
votes
1answer
54 views
Is there anyway to record sounds(play with SoundPool)?
I am developing an application with some buttons in it. When a button touched, the application play a sound with SoundPool method. Is there anyway to record the sequence of sounds that user plays and ...
2
votes
0answers
32 views
making soundpool for tempo
I am developing a drum machine with 12 buttons that can play different sounds.I want to add soundpool that plays every " " second and i want to be able to adjust time between soundpool starts in ...
1
vote
0answers
94 views
Android SoundPool + AudioEffects
I am currently using the SoundPool for gapless looping over short sample clips - works good so far.
Now I would like to add effects to one or both channels (BassBoost or PresetReverb).
Can I do ...
2
votes
1answer
85 views
BpMemoryHeap issue with app that involves soundpool
I have created an app that involves about 600 small ogg files. Total around 15MB. Each file will have avg. of 6 seconds sound. This is not a game app but learning app for children.
I tried loading ...
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
0answers
74 views
Is there a limit for loading sounds to soundpool loader in android?
I have created an app that involves playing about 500 ogg files from raw (each files is about 20 to 30kb) the sounds are triggered when required. I am using sound pool. If I add sounds more than 475 ...
1
vote
0answers
234 views
Problems with playing sound in Android using SoundPool
In my Android game, I am playing short sound effects using AudioManager and SoundPool.
While this works fine on Samsung Galaxy Tab 10.1, when I ported the game to Samsung Galaxy SIII, I am ...
0
votes
1answer
64 views
Android - Making SoundPool a global class? (Available to all other classes)
So basically, I'm creating a game on a SurfaceView and I have these classes on my main CustomView:
private TitleScreen titleScreen;private GameScreen gameScreen;private PauseScreen ...
0
votes
0answers
96 views
Play a sound using SoundPool?
I try to play several sounds using a ListActivity and a SoundPool. Here is a simplified version of the code :
onCreate() :
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
...
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 ...
0
votes
0answers
25 views
Can I record sounds which is played by AudioTrack or Soundpool? [duplicate]
I created a musical instrument application for android. This application have some Buttons and when a Button is touched plays a special sound (like a piano app).
Can I record the sounds to a file when ...
0
votes
0answers
365 views
SoundPool: AudioFlinger could not create track, status: -12 error
I'm doing an app in android and I Have a problem with the soundpool class. I'm getting the AudioFlinger could not create track, status: -12 error. For what i know is a memory issue. But I don't know ...
0
votes
0answers
41 views
SoundPool autorun
I look at the example on the web.
Using this method is to play with the button.
But I want to make him AutoPlay did not execute correctly.
I would like to ask me how to do it.
This is an example of ...
0
votes
1answer
74 views
cleaning up after soundPool (loop sound still plays after app is killed)
how do I clean up after soundPool? my looping sounds still play after app is killed
// my onStop() onPause() is identical
the sound continues until reboot.
public void onStop(){
...
1
vote
1answer
52 views
when using soundPool my first sound loops the rest throw status 12
when using soundPool my first sound loops the rest throw status 12
here is the code
public SoundPool soundPool = new SoundPool(5, AudioManager.STREAM_MUSIC, 100);
public HashMap<Integer, ...
0
votes
1answer
166 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
2answers
161 views
Android Game - SoundPool not playing sounds on Motorola Droid X2
I am working on a game that plays audio. The sounds play fine on my Samsung device and an HTC device. However, the sounds do not play on a Motorola Droid X2.
To initialize my SoundPool:
static ...
0
votes
0answers
63 views
Android - Playing SoundPool is muted when voice call starts
My app plays a .wav with a SoundPool when events like SMS/Data/Phone Calls occur while the phone is roaming. It works in almost all cases except when the user starts a voice call, I hear the .wav for ...
0
votes
0answers
87 views
Recording Android Soundpool Output to an Audio File
Does anyone know if it is now possible to record the audio output of Soundpool events directly to a file? Everything I've read online seems to point to it not being (or at least previously not being) ...
0
votes
0answers
110 views
How I can use SoundPool with Threads?
In my project,the application play a sound When user touch special positions(like a house in an image). I have 72 positions.
I used a SoundPool class:
package com.app;
import ...
0
votes
0answers
112 views
How can I play bytes(from visualizer) using soundpool?
What I am trying is :
Playing sound using MediaPlayer
Trying to capture that playing audio using visualizer
modify pitch using soundpool
play using soundpool.
Here is my complete rough code:
...
0
votes
1answer
176 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
0answers
28 views
Count clicks INT, and play a sound for every click in a single BUTTON
I want to count the clicks... and in every Int of clicks, sound a different Raw file sound
How can I do it?
PLEASE, HELP ME! :( I did it by Mediaplayer, but i hear that's better in SoundPool ?
...
0
votes
1answer
240 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 ...
1
vote
1answer
132 views
(Android) How to tell if a sound is playing in soundpool
Is there a way I can tell if a certain sound is playing in SoundPool???
I.E.
if(MySound./*Command Goes Here*/()==true{
//Do stuff
}
I would appreciate if you could point me in the right ...
0
votes
1answer
233 views
Streaming audio file to soundpool load() Android
I want to use SoundPool class to create Playback speed effects. To play sound fastly or slowly (1x,0.5x,2x etc).
But the problem is soundpool handles only small files. When i give a large file. It ...
0
votes
2answers
401 views
Soundpool: sample not ready
I have changed the default media framework in Android from Stagefright to Gstreamer. This has been done to make it flexible for our project.
But when I run some apks, all the sounds of the app is ...
2
votes
1answer
237 views
android mediaplayer alternative?
is there a java audio library that is capable of setting the playback rate of the audio(controlling the speed of the audio) as well as being able to return me the current position of the playback and ...
0
votes
2answers
148 views
Android mixing raw sounds. Source is java arrays not files or recourses
I have audio data in uncompressed raw format as java arrays.
short[] or byte[]
I wish to play them in Android.
SoundPool looks like what I need but I can't find way to load data from memory. It ...


