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 ? ...
2
votes
1answer
235 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
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 ...
2
votes
2answers
118 views

Record and playback a sound on Android without storing a temporary file

In my app I want to record a 2-second long sound and play it back to the user. All examples I've found so far require that the audio data for playback either comes from a file or from a URL. Both ...
0
votes
1answer
133 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 ...
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 ...
0
votes
2answers
314 views

How to play more than 32 sounds using SoundPool?

Since my last question hasnt been answered where I used simple medaiplayer (Sound sometimes remains silent when playing more sounds in a row, why?) and tried to create the whole thing using SoundPool. ...
1
vote
2answers
487 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 ...
0
votes
0answers
105 views

How to play media dynamically in AppWidgetProvider

I want to play a short sound clip (~2 seconds) in my OnUpdate method in my AppWidgetProvider class. This OnUpdate method is called dynamically meaning that the sound clip will be getting replayed over ...
1
vote
0answers
146 views

I need to record and loop soundpool output

The intertubes isn't pulling up much information on this. I have a standard soundpool set up to play various samples. Low latency is essential (for anyone suggesting a different way of doing this) ...
2
votes
1answer
233 views

How to play multiple sound files simultaneously?

For my application I need to play multiple tracks simultaneously and some kinf of listener to know when a track is finished. SoundPool seems to be the obvious choice, but unfortunately I could't ...
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 ...
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 ...
0
votes
2answers
623 views

Playing audio file for specific time

Guys i able to play audio file using Mediaplayer. But i need to play a audio file for specific time. Eg: play audio1.mp3 till 5 minutes. The audio file is of 10 seconds only.But it should keep ...
0
votes
1answer
1k views

android:play audio files using single mediaplayer object and also display images

i need to display images and play corresponding audio files one after the other. i tried to create multiple media player objects but it shows error(1, -17) so plz help guys i am running out of time. ...
2
votes
1answer
428 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 ...
1
vote
1answer
115 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
0answers
420 views

Android multiple MediaPlayer instances in sync?

I need to be able to have multiple tracks playing at the same time, and also changing to other tracks with as little latency as possible. I don't think SoundPool will work, since it are real ...
1
vote
0answers
166 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 ...
2
votes
2answers
1k 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
0answers
441 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 ...
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 ...
4
votes
4answers
2k 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 ...
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 ...