Skip to content Skip to sidebar Skip to footer

Android- Mediaplayer Streaming Issue With Test Devices

I currently have a mediaplayer that is given a streamable datasource. I have two test devices: HTC Thunderbolt and a Samsung Galaxy SII Skyrocket. The HTC device is able to stream

Solution 1:

The docs for MediaPlayer state:

For streams, you should call prepareAsync(), which returns immediately, rather than blocking until enough data has been buffered.

So I would start by trying that. You'll need to use the OnPreparedListener to call start() for you instead of assuming that prepare is finished after it returns.

privateMediaPlayermp=newMediaPlayer();
mp.setOnPreparedListener(newMediaPlayer.OnPreparedListener() {
    @OverridepublicvoidonPrepared(MediaPlayer arg0) {
        mp.start();

    }
});

mp.reset(); //<--- you probably shouldn't need this here.
mp.setDataSource(soundUri);
mp.prepareAsync();

That way you will be guaranteed not to be calling start() before the MediaPlayer is prepared.

If you are still having trouble after this change my next guess is that it is codec related. Media playback on android is a bit finicky, and that is doubly true for streaming Media. What type of file are you trying to play?

Solution 2:

as it seems to be an issue of you setting the datasource of your mediaplayer here is how it should be done:

privateMediaPlayermp=newMediaPlayer();
mp.reset();
mp.setDataSource(soundUri);
mp.prepare();
mp.start();

or you could check the full answer here: https://stackoverflow.com/a/9061259/1084764

Post a Comment for "Android- Mediaplayer Streaming Issue With Test Devices"