The MediaPlayer do not play the live streaming of a radio url. This
code and radio is working fine on Andriod Simulator but not working on
Andriod Mobiles (Samsung Galaxy 9001 and LG optimus black ) both
running andriod 2.2 version
The same program and radio however works on HTC aria mobile.

We have implemented setOnErroListner and captured logs there as well
but nothing is coming in the logs.

                       mediaPlayer = new MediaPlayer();
                        
mediaPlayer.setDataSource("http://hobbes.idobi.com/;stream.mp3";);
                        mediaPlayer.prepareAsync();
                        mediaPlayer.setOnPreparedListener(new 
OnPreparedListener() {
                                public void onPrepared(MediaPlayer mp) {
                                        mediaPlayer.start();
                                }
                        });


Kindly suggest if there is any other configuration we need to do for
(Samsung Galaxy 9001 and LG optimus black )  devices.
These devices plays some of other mp3 URL streaming with the same code
but the  "http://hobbes.idobi.com/;stream.mp3"; is not working...

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to