[android-developers] Re: Retrieving Shoutcast Meta-Data from MediaPlayer not possible. Any alternative ?

2010-05-26 Thread Ole
I've used something like this: import android.media.MediaPlayer; ... MediaPlayer player = new MediaPlayer(); if ( player != null ) { player.setOnPreparedListener(this); try { player.setDataSource("http://blabla.com/ yourstream.mp3");

Re: [android-developers] Re: Retrieving Shoutcast Meta-Data from MediaPlayer not possible. Any alternative ?

2010-03-29 Thread dillirao malipeddi
Arijasoft developed android online radio SDK using this AOR SDK you can play shoutcast/icecast ( mp3/aac) radio streams on android for more details look in to http://demos.arijasoft.com/Arija_Android_Dev/aorsdkrelease.php Thanks On

[android-developers] Re: Retrieving Shoutcast Meta-Data from MediaPlayer not possible. Any alternative ?

2009-12-10 Thread senthil sen
Can you please share me the source code of how u are getting the meta data of shoutcast stream. I am also trying to play a radio station. But i am getting a small gap in between while playing. thanks, Sondy On Nov 26, 8:23 pm, Ole wrote: > I've solved the issue. > > The solution is to simply ge

Re: [android-developers] Re: Retrieving Shoutcast Meta-Data from MediaPlayer not possible. Any alternative ?

2009-11-26 Thread Alok Kulkarni
Can you share your streaming Media App here , or just the basic steps. I am stuck where i can start downloading the song but the media player does not recognize it and gives error after prepare method is called. But if the download completes, then the song is played perfectly. Where am i going wron

[android-developers] Re: Retrieving Shoutcast Meta-Data from MediaPlayer not possible. Any alternative ?

2009-11-26 Thread Ole
I've solved the issue. The solution is to simply get the meta-data separately from the MediaPlayer-stuff by connecting to the stream from time to time with HttpURLConnection and extracting the meta-data. -- You received this message because you are subscribed to the Google Groups "Android Develo