0
votes
1answer
23 views

mediaplayer play sound too loud

i've written my code so that when an event occurs, it plays an mp3, but when this happens, the sound is very loud, and it cannot be made lower with smartphone's buttons... i just did MediaPlayer ...
1
vote
0answers
23 views

Create an MP3 file (or WAV, etc) in Android app from layered MediaPlayers

I am working on a DJ application that lets the user manipulate instrumental layers that are being played simultaneously through multiple MediaPlayers. Currently, I have been able to roughly ...
1
vote
2answers
22 views

Stop the Player (JLayer) inside a java Thread

I have a thread to play an audio but when i close the form i want to stop the player playing the audio file my thread run method is: public static Player playplayer; public static FileInputStream ...
0
votes
2answers
28 views

Can't play audio in android using MediaPalyer

I have file location in 05-11 22:43:41.793: D/Play audio(9996): /storage/emulated/0/QRSpeech/sounds/Introduction_to_Android_1.3gpp I want to play this file using MediaPlayer like the code below : ...
3
votes
4answers
39 views

MediaPlayer loops when started from onPause()

I want to play a sound when onPause() of my Activity is called. To do so, I use the following code: @Override public void onPause() { super.onPause(); MediaPlayer player = ...
-2
votes
2answers
66 views

Delphi7, repeat sounds using Tmediaplayer

i am using delphi7. I want put a song in my program, but i don't want it to end never. I tried using a timer, but it didn't play the music: procedure TForm1.FormCreate(Sender: TObject); begin ...
0
votes
1answer
36 views

Issue with looping an audio file

How can i get the value of repetitions completed from mp.setLooping(true). I can use OnCompletionListener to get number of repetitions, but it produces 1sec delay between looping, which is annoying in ...
1
vote
1answer
21 views

Playing just one sound android

i'm developing a little quizz app and i would like to play sound depending on if the user answers the question correctly or not. I've got many sound files in "assets/". What I would like to do is to ...
0
votes
1answer
92 views

Android App/ to paly audio/videos files from Raw or Assets folder instead of /SDCard/

Please anyone could help me getting this Android App play audio /video files from Raw or Assets Folders instead playing from /SDCard/. What should I change in this code below ? Here is the Tutorial ...
-2
votes
0answers
36 views

Problems playing diferents songs with Android MediaPlayer

I have three songs in a list, selected one of these will launch a new activity and plays the song. Return to the previous activity, select a new song and this also is playing together with the above ...
0
votes
1answer
27 views

How to stop Android TextToSpeech when there is a phone call come in

My android app got rejected by Amazon because of this reason. I have this TextToSpeech playing while the phone call come in. They wanted me to stop playing. How do I do that?
0
votes
0answers
100 views

Android MediaPlayer Audio SeekBar

This sort of question seems to have come up a here a lot, but they are all a slightly different case to mine and have just confused me. I am trying to get my SeekBar to synchronise with a single and ...
2
votes
1answer
163 views

Android Audio SeekBar

I'm trying to create something where a single audio file is played and can be paused and manipulated with a progress/seek bar. I want to have an image taking up most of the screen and then a play ...
0
votes
1answer
70 views

Decrypting audio/video on-the-fly to MediaPlayer

I have been looking around for few days, but unable to get a clear answer on how to do it. I have some encrypted audio/video files on my sdcard, which I would like to play which it will send to ...
0
votes
1answer
37 views

How to get loop count from mediaplayer Android

How to Get the number of completed loop value? I wanted to assign the value to count, so the users know how many times, the song had got repeated. help me out,and thanks in advance. int count=0; ...
0
votes
1answer
76 views

Android Media Player Wont Play After Stop

I have music playlist for 5 songs. I just want that play and stop buttons work as long as im in app. And that i can stop music when i want to and start another. How this works now...The music plays ...
2
votes
1answer
173 views

Android Mediaplayer Error (-19, 0)

I try to replay a sound when I click on a button. But I get the Error (-19, 0) (what ever this means^^) My code: final Button xxx = (Button)findViewById(R.id.xxx); ...
0
votes
0answers
60 views

Android: Select audio track in video

I've got some .mp4 videos that have multiple audio tracks, each for a specific language. I found this question on stackoverflow but the user didn't post his solution. I was wondering how to select ...
2
votes
1answer
64 views

Playing sound from Database using MediaPlayer C#

I have sound stored in database in byte[] type. I can easily play with SoundPlayer, but not with MediaPlayer. Nice thing about MediaPlayer is I can play from middle of the sound. SoundPlayer doesn't ...
-1
votes
1answer
88 views

Thread and mediaplayer problems, Timer with sound

I'm developing an Android application that is based on a timer that every second must play a sound that you selected before. Here is the problem: No objects can run Media Player in a Thread or a ...
0
votes
0answers
66 views

Android audio player with caching

I'm developing online audio player now. And the more I succeed I see the more limitation here. I need to play music with simultaneous caching on external storage to play next time without loading. ...
1
vote
1answer
69 views

Android: Loop sound file in oncreate

I want to loop my sound mp3 file in onCreate() method infinitely. My code in onCreate method is as follows : mMediaPlayer = MediaPlayer.create(getApplicationContext(), R.raw.sound_7); ...
0
votes
1answer
374 views

MediaPlayer Preparing Failed

All I have been doing for the past 8 hours is trying to come up with a simple recorder/ playback app. I want to be able to record the audio in 3GP and then have it automatically loaded into the ...
0
votes
0answers
37 views

How to stop the mobile mediaplayer, and play and android sound

I want that, when I touch the button from my app, if the mobile's mediaplayer is playing a song, it stops, and when my android app' sound finishes, the mediaplayer of the mobile plays another time.. ...
0
votes
1answer
58 views

sounds not playing with mediaplayer after playing some sounds

I'm developing an android application which is collection of 100 sound effects. After I play for instance 25 of the sounds, I can't play anymore and I have to close the application and wait for some ...
0
votes
1answer
23 views

Replay audio from in-memory source

I have some audio data (raw uncompressed audio waveform, no file format) in memory and want to replay it. Android-internal Mediaplayer seems to support only replaying of files stored somewhere on ...
4
votes
1answer
143 views

Audio File Streaming in Android not working one android 2.3

I am working on audio streaming on android for soundcloud audio using media player , it is working on android 4.x and above devices but not working less than 4.0 like 2.3.3 and 2.2 Any other solution ...
0
votes
1answer
64 views

How to record MediaPlayer output and voice in a single file?

I have a scenario where in I need to record the voice along with a backtrack/music playing. The user uses a headset to hear the music and sings along with the music,I need to capture both the things ...
0
votes
1answer
59 views

application closing unexpectedly with very simple code

I want to play a sound at the touch of a button,but application closing unexpectedly with very simple code. MainActivity.java: package com.example.zvuki; import android.media.MediaPlayer; import ...
0
votes
1answer
107 views

Android MediaPlayer doesnt work properly

I wrote an application that should play a sound when I press a button. But the sound is played just about every fourth click and not in its full lenght. @Override public void onClick(View v) { if ...
0
votes
0answers
20 views

Play audio files

I am using Visual Basic.net and am wanting to play some audio files. Other than the Windows Media Player, what are some controls/classes that can be used? I am wanting to be able to detect when an ...
0
votes
1answer
56 views

Media Player: Stream from Database

in short: i have some audio files in my local sqlitedatabse and want to play with with the native media player from android. reffered to the documentation i can play an audio either by placing my ...
1
vote
0answers
144 views

how to get bit rate , sampling rate and no. of channels of a audio file in android

I need your help for the below query: Query: Is there any way of getting following info of an audio file. Sample rate, Channel, Bitrate of an audio file. For extracting bitrate, ...
0
votes
1answer
70 views

Audio wont play?

I'm running into this problem, where the audio just doesnt want to play. There are no errors, but i dont hear the music when im supposed to. Heres the code below, and the logcat. I dont know how to ...
0
votes
1answer
202 views

Using MediaRecorder to write to a buffer or FIFO

I am developing a low data rate VoIP kind of project . I need to capture audio at low data rates and store it in an internal buffer or FIFO (NOT in a file). I would like to use low data rate .AMR ...
1
vote
1answer
85 views

MediaPlayer sound gets interrupted by animation

I want to play a sound while animating a view. I'm playing the sound with MediaPlayer, and the sound gets interrupted when I play the animation (when I say interrupted, I mean stops as soon as the ...
0
votes
1answer
78 views

Error in hadling audio file in android while using media player class

Here is my code: private void scanningSoundStart() { scanningMediaPlayer = MediaPlayer.create(this, R.raw.scanning); scanningMediaPlayer.setOnPreparedListener(new OnPreparedListener() { ...
0
votes
0answers
94 views

Code for audio capture and playback not working

I'm a bit new to android development, and I can't find the reason why this code isn't working. I'll appreciate it big time if sombody could have a look. It looks as if it is recording, and then when I ...
0
votes
0answers
79 views

Andriod Media Player playing sound in distorted manner

I am creating new MediaPlayer object using MediaPlayer.Create method. After that I am starting the music with the start method as follows MediaPlayer mplayer = MediaPlayer.create(this, R.raw.mysong); ...
0
votes
0answers
65 views

On button click, mediaplayer plays random sounds

I don't know how to do it. I want to put all the sound files into the RAW folder, and when I click the button, it reproduce a sound oh there, random package com.colom.ola.ke.ase; import ...
0
votes
0answers
209 views

Raw .aac file stram in android media player

My android app have 2 audio files. .mp3 format in raw folder. I am accessing it like this: Uri audio = Uri.parse("android.resource://com.lubnaessa.duasafar/"+ R.raw.aud); mediaPlayer = ...
4
votes
2answers
81 views

What sound formats can the .NET library handle?

I'm thinking of writing my own media player, just something basic to suit my own needs. I'm just wondering what formats the .NET libs can handle? All I can find in the libraries is WAV support, which ...
2
votes
1answer
248 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 ...
1
vote
1answer
438 views

Android Media Player: Download to File and Stream From File

I'm using Android's MediaPlayer to play MP3 files that are simultaneously downloaded from the internet using the DownloadManager. I'm aware of the MediaPlayer's capability to stream directly, but I ...
0
votes
1answer
214 views

Detect audio path change in android

I am working on a Android media player application (Android ver 2.3 - 4.1 to be supported). I want to detect audio path transitions, like speaker to wired-headset or wired-headset to BT etc. I need to ...
2
votes
2answers
120 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
136 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
2answers
48 views

Can I use a variable instead of the mp3 resource id to play a sound in android

I was wondering how I could replace the mp3name parameter with a variable that matches the MP3 name in the raw file. I have a number of mp3 files to call at various times but only really want to have ...
0
votes
1answer
87 views

MPlayer audio channel (left/right) switching

I'm trying to make an application, media player using mplayer slave mode. Any clue about switching VCD Karaoke channel (left and right) on the fly, while the video is playing on the mplayer-slave ...
0
votes
2answers
498 views

AudioTrack, SoundPool or MediaPlayer Which Should I use?

I need to play multiple audio files, with different duration, like 5 to 30 seconds. And i want to set volume independently for right/left channel and also to apply effects, like Reverb or Distortion. ...

1 2 3 4 5