Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
463 views

Android http live Streaming URL using mediaplayer

I am trying to play an url but its not playing and the code i used is below..the logcat is showing Mediaplayer error(1,-1002), start state is 0 and error(-38, 0) why...? where i am going ...
5
votes
2answers
903 views

Android MediaPlayer works fine in our Custom audio Streaming application up to Android 2.1 but not in higher versions

EDIT: Android 2.2 MediaPlayer is working fine with one SHOUTcast URL but not with the other one I need to play audio files from external URLs(shoutcast stream). Currently the audio files are ...
5
votes
1answer
560 views

Android - MediaPlayer + PowerManager.PARTIAL_WAKE_LOCK

I'm creating application for listening radio streams via WiFi & 3G network. I am using native MediaPlayer. Unfortunately when screen goes black and phone goes into standby mode mediaplayer starts ...
4
votes
2answers
272 views

How to protect media content (video, audio) on Android from being saved/redistributed?

What opportunities are there for regular app developers (with that I mean, you're not a million dollar content producing company or distribution channel provider, but a regular, small app development ...
3
votes
1answer
37 views

listing album in android

I am developing a simple audio player in android. I want to list the album's in the device. I tried this code String where = new String(); where = MediaStore.Audio.Media.IS_MUSIC + "=1"; private ...
3
votes
0answers
127 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 ...
3
votes
1answer
165 views

MediaPlayer.create() always returns null

I have used the mediaplayer before, and I have never had this problem. Whenever I try to use MediaPlayer.create(), the method gives me null, and I can't play my sounds. Is there anything that I am ...
2
votes
2answers
110 views

How to get duration of Audio Stream and continue audio streaming from any point

Description: I have following code for an Audio player. I can continue Audio playback from any duration by clicking on Progress Bar(between 0-to-mediaplayer.getDuration()). It is working perfectly ...
2
votes
0answers
93 views

Android MediaPlayer turns black when it is paused and orientation changes

I'm using SurfaceView with MediaPlayer. When the video is playing everything works as expected, it changes its size acoording to the new orientation and keeps playing. The problem is when paused. When ...
2
votes
0answers
76 views

VideoView doesn't start when invisible

I have an AsyncTask, where I hide a video view, start the video playback, and show the video view when the video is playing. But the video would just not start when the video view is set to ...
2
votes
2answers
86 views

How to change the state of song from stop to start?

I have make one application in android in which i take three buttons in xml and in java i set the onclick event, when play button is clicked song is prepared and play, when stop button is clicked ...
2
votes
0answers
54 views

MediaPlayer: which calls are allowed in 'preparing' state

This is a followup to this question. The MediaPlayer docs are very specific about which calls can be made in which state, except for which calls are allowed in the 'preparing' state. And it says: ...
1
vote
1answer
33 views

Trying to play only one audio file at a time using mediaPlayer and if/else

I've tried to follow the other questions, but I don't think that they are what I am looking for. Here's my java: http://pastie.org/private/psy2nnys8i0ajz4i8qfw I know I am opening multiple ...
1
vote
0answers
37 views

Display slideshow of Images in front with song playing in background

I am writing a code for playing a song which is near about 3 min long in background and at the same time I want to show a slideshow of images in the front. There are two problems I am facing: 1. The ...
1
vote
0answers
11 views

Error code 1,-4 in media player android

I got error code with 1,-4 number in android media player I use this code for playing music in my service public void playNextSong(/* String manualUrl */) { mState = State.Stopped; ...
1
vote
1answer
43 views

What is the benefit of the stop() function compared to the pause() function in the MediaPlayer class?

Both functions dont set the current Position to 0 and I have to call seekTo(0) after I called stop() in order to get the desired behavior. Moreover I need to call prepare() after I called stop(). So ...
1
vote
0answers
22 views

rtsp video performance as Browser triggered intent vs my application triggered intent

Hi I am creating an app which will play livestream.com's rtsp live channel. I am launching the player using intent within my app as following: iPlayer = new Intent(Intent.ACTION_VIEW); ...
1
vote
0answers
48 views

How do I include http headers with MediaPlayer setDataSource?

I am passing a URI to the setDataSource method of the MediaPlayer object. I am targeting api version less than 14, so believe that I cannot use the new method that allows headers to be included. How ...
1
vote
2answers
134 views

Android Media Player Seek bar not updating on start after stop

I'm having a hard time working with this. I have a Media player, and I can play, pause, stop, play again after pause, stop... whatever. Now I wanted to have a SeekBar to give a visual component. My ...
1
vote
0answers
69 views

In Android, the MediaPlayer creation fails to work. Same code has worked for me for months

I am trying to create a MediaPlayer in a very simple way: mRingtonePlayer = MediaPlayer.create(this, mRingtoneUri); Where, using logging, I can confirm that mRingtoneUri is: ...
1
vote
0answers
59 views

How to play audio file of format wav in android webview?

This is my code.. mp3 format file plays without any error..but wav format brings MediaPlayer error(1,-1) try { MediaPlayer player = new MediaPlayer(); ...
1
vote
1answer
127 views

Does Android media player supply session id in the HTTP request headers?

I know that iOS AV player supplies a UUID session ID in the HTTP request header X-Playback-Session-Id when requesting content chunks from an HTTP streaming server. What is the behavior of the ...
1
vote
2answers
155 views

MediaPlayer crashes after release(); .. No 'Caused by' in LogCat, can I debug?

Basically, when I click a button, it plays a sound, it's a soundboard.. The main problem I have is when I use release(); the first time round the audio is played, when I go to play the sound again it ...
1
vote
1answer
105 views

Convert PCM encoded wav file to amr file using AmrInputStream, but not able to play it using MediaPlayer

I am converting a PCM encoded wav file to amr file in Android using AmrInputStream. I used the code from below post: converting PCM-16 to AMR using AmrInputStream Everything works fine, and the amr ...
1
vote
1answer
115 views

How to Stop or Release MediaPlayer?

I am Using MediaPlayer to Play the Mp3 file but the problem is the MediaPlayer is not Stopped on Click Event of Back Button Event. Following is My Code. Java File:- public class Menu_Screen_Activity ...
1
vote
1answer
130 views

Prepare Failed on Mediaplayer when trying to stream

I am trying to stream an MP3-file with the following code in Android 2.3.3: player = new MediaPlayer(); String uri = "http://192.168.2.102:8080/sound/test.mp3"; player.setDataSource(uri); ...
1
vote
1answer
128 views

IO Exception in Audio Media Player

I want to play audio through streaming in Media Player. I used the sample project source code from ...
1
vote
1answer
127 views

Android media player - How to switch between videos?

I am developing an application in which I want to show videos. Here my requirement is, I should be able to play video for while (say video A for 2 min) then I will switch to video B for another 15 ...
1
vote
0answers
67 views

android progressive streaming for locally recorded audio

I am recording certain audio files using the builtin media recording API , here is the relevant code for recording mRecorder = new MediaRecorder(); ...
1
vote
1answer
88 views

Application crashes when button is clicked

I wrote this code in order to make a soundboard like app public class ButtonSoundActivity extends Activity implements OnClickListener { private Button buttons[]; private MediaPlayer ...
1
vote
1answer
120 views

OpenGL Context destroyed after quitting from MediaPlayer

We have an Augmented Reality app that displays either a video or a 3D model when pointing on a specific marker. This works fine, but as soon as we quit the MediaPlayer activity via the Back-Button, ...
1
vote
2answers
186 views

Get mp3 duration in android

How to get mp3 track duration without creating MediaPlayer instance? I just need to show mp3 song length in mp3 file list, so I think that I shouldn't create MediaPlayer object for each of tracks in ...
1
vote
2answers
123 views

How to tell if .3gp file is audio or video in android

I have an app which allows user to import media (videos, photos, audio) which will then be managed by the application (as evidence). I've found that some audio recording apps will save audio in .3gp ...
1
vote
0answers
76 views

To set Audio Format using AudioRecorder

I am Running Android SDK, 2.2 and set Samsung Galaxy Tab as target, using following code to create Audio Recorder Object, private static final int AUDIO_BUFFER_SAMPLEREAD_SIZE = 8000; public int ...
1
vote
0answers
163 views

how to add music library in my android appplication like facebook and twitter

I want to add or play mp3 files from music library in my application... I am able to fetch all mp3 files in a listview but I want features of the music gallery which lists out the songs accroding to ...
1
vote
0answers
441 views

Android How to obtain media player progress bar and also how to show it on each activity top screen

Am working on certain app XYZ. In that app having a audio player module. I launch a player launch from an activity using some following code: playButton = (ImageButton) ...
1
vote
3answers
534 views

play an mp3 with MediaPlayer class on Android issues

What is wrong with my code? I have a toggle button and i would like to play/stop an mp3. I guess that the code should be as follows: package com.android.iFocus; import android.app.Activity; import ...
1
vote
2answers
255 views

Streaming audio and video from a url?

I want to be able to stream video and audion from a url directly into a android video player. How or what is the best way for going about doing this?
1
vote
2answers
312 views

How to update SeekBar after android rotation?

I use this media player but when I rotate the emulator (Ctrl+F11) the startPlayProgressUpdater() doesn't work properly. How can I update seekbar after rotation?
1
vote
1answer
700 views

WARN/AudioFlinger(33): write blocked for 76 msecs, 7773 delayed writes, thread 0xb3f0

I have created an intent servie to start music for my app in the background. it is wirking but my logcat is flooded with the messages: 09-14 16:46:30.117: WARN/AudioFlinger(33): write blocked for 76 ...
1
vote
1answer
387 views

Progress bar with Streaming Audio using MediaPlayer

Is there a way to show the progress of a song playing with a progress bar and possibly length in terms of minutes and seconds? I would like it in the status bar, but I know how to do that using a ...
1
vote
2answers
632 views

MP3Extractor(34): Unable to resync. Signalling end of stream

I am getting error when trying to play mp**3 file from my **resource folder in Android application i have created raw folder in res folder this is sample code through which i am playing ...
1
vote
4answers
183 views

Stop media player

I am new in android and I have another (simple?) problem. I don't know how to stop Media Player. This is my simple code: public void onCreate(Bundle savedInstanceState) { ...
1
vote
1answer
337 views

Problems recording + playback (MediaRecorder + MediaPlayer)

I'm trying to record the users voice and play it back onClick of a button but I'm getting a "WARN/System.err(25236): java.io.IOException: Prepare failed.: status=0x1". (See "LogCat" below) I record ...
0
votes
1answer
32 views

How I can set Chooser to show multiple type of intents?

I am trying to open a dailog for palyers that can steam a audio player. I am doing this final Intent intent = new Intent(); intent.setAction(android.content.Intent.ACTION_VIEW); ...
0
votes
1answer
23 views

android media player delay

I am making a game for android which needs to play a small beep whenever a user touches a certain object. To do this I have this simple code to create the media player. beep is a small .ogg file of ...
0
votes
1answer
13 views

how to synchronize audio and image

I implementing media player which is using media store content provider which is providing the audio files stored now i want to use the corresponding picture of that song displayed when playing audio ...
0
votes
1answer
35 views

MediaPlayer unable to prepare?

I'm working on a streaming radio app (SHOUTcast, mp3) and when I run my code it works terrific in the Android emulator, both 2.2 and 2.3.3. When I run it on my phone (LG P500h, 2.2) I get the ...
0
votes
0answers
10 views

Android: Loading data into ListView

below is what it shows at the design time, i am trying to load the data into listview (feeding through url like list of audio from here: http://ofertaweb.ro/android/sleepandlovemusic/list_files.php) ...
0
votes
0answers
10 views

Android's API Level 10 Equalizer not working when created and enabled

i'm trying to add the equalizer effect to my android application in a wrapper for MediaPlayer that I am writting (bacause of the states problem he he). The app is running on my phone using android ...

1 2 3 4