I'm having an issue with IceCast audio stream, using MediaPlayer. The streams starts and plays for some seconds, then just stops. Here's the code I'm using :

  MediaPlayer mediaPlayer = new MediaPlayer();
  mediaPlayer.reset();
  mediaPlayer.setOnBufferingUpdateListener(this);
  mediaPlayer.setOnErrorListener(this);
  mediaPlayer.setOnPreparedListener(this);
  mediaPlayer.setOnCompletionListener(this);
  mediaPlayer.setOnInfoListener(this);

  mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);

  try {
     mediaPlayer.setDataSource((url));
     mediaPlayer.prepare();
  } catch (Exception e) {
     // TODO Auto-generated catch block
     Toast.makeText(this, e.toString(), Toast.LENGTH_LONG).show();
  }

...

@Override
public void onPrepared(MediaPlayer arg0) {
  arg0.start();
    }

When I press my "Play" button, it buffers then starts playing, but it stops after 10-15s. When I output buffer update, the progress value decrease until reaching -(2^32)/2. The sound just stops then and never starts again.

What could be the issue ?

link|improve this question
Is metadata on? Generally, if requested, metadata will appear much sooner in the stream, but might be delayed depending on how you have Icecast configured. – Brad Oct 10 '11 at 13:40
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.