Re: [android-developers] Re: MediaPlayer and 1.5 vs 1.6

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 http://demos.arijasoft.com/Arija_Android_Dev/aorsdkrelease.phpThanks On

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-21 Thread coolbanana
Hi Marco, how kann i the datestream from Inputstream = connection.getInputStream (), over one local http server to MediaPlay at SetDataSource()? Is it that u mean. i had try it with SetDataSource(FileDiscriptor), aber the only way that i found to set the FD with Socket-ParcelFileDescriptor-FD

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-21 Thread sirdan
Right, I agree that 1.6 is a better minimum version to support at this point. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-21 Thread Marco Nelissen
I meant: implement your own http server to run on the phone. This server would also be a shoutcast client, and connect to the remote shoutcast server. It would process the data, and then pass it to its own clients as if it were serving up regular mp3 files. Your MediaPlayer would then connect to

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-20 Thread Marco Nelissen
On Tue, Oct 20, 2009 at 12:08 PM, sirdan sirda...@gmail.com wrote: In 1.6 I do the following to stream an mp3 shoutcast stream:        MediaPlayer mp = new MediaPlayer();        try {                mp.setDataSource(http://xxx.net/my.mp3;);                mp.prepare();        }        

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-20 Thread Moto
Wait with android 1.6 now you can stream progressively? If yes than can we also stream AAC+ content? On Oct 20, 6:58 pm, Marco Nelissen marc...@android.com wrote: On Tue, Oct 20, 2009 at 12:08 PM, sirdan sirda...@gmail.com wrote: In 1.6 I do the following to stream an mp3 shoutcast stream:

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-20 Thread Marco Nelissen
I'm not sure how you jumped to that conclusion. progressive streaming has worked since 1.0, for some specific media formats. progressive streaming is not the same as shoutcast streaming though. On Tue, Oct 20, 2009 at 4:13 PM, Moto medicalsou...@gmail.com wrote: Wait with android 1.6 now you

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-20 Thread Moto
lol well I guess the first person that posted maid me believe such was possible.. grgrgr! lol.. Well I'll stick to my old methods... Chears! On Oct 20, 7:43 pm, Marco Nelissen marc...@android.com wrote: I'm not sure how you jumped to that conclusion. progressive streaming has worked since

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-20 Thread sirdan
Marco, thanks for the info. By level 3, I meant API Level 3. If android doesn't support it natively in 1.5, does anyone know if there is code available to do it? On Oct 20, 6:58 pm, Marco Nelissen marc...@android.com wrote: On Tue, Oct 20, 2009 at 12:08 PM, sirdan sirda...@gmail.com wrote:

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-20 Thread Marco Nelissen
You could rig something up with your local http server that runs on the phone and processes the incoming data before passing it on the player, but why bother? The vast majority of devices runs 1.6 now. On Tue, Oct 20, 2009 at 6:16 PM, sirdan sirda...@gmail.com wrote: Marco, thanks for the