[android-developers] Re: Stream a very large mp3?

2009-03-11 Thread g1bb
For the record, here is the code: MediaPlayer player = new MediaPlayer(); player.setAudioStreamType(AudioManager.STREAM_MUSIC); try { player.setDataSource(http://mybigmp3.mp3;); } catch (IllegalArgumentException e1) {

[android-developers] Re: Stream a very large mp3?

2009-03-11 Thread Dave Sparks
I've never tried an MP3 that big - it's quite possible that it won't work. I think the largest file we ever tested was a one hour MP3 mix file. I think it was about 70 MB. On Mar 11, 6:25 pm, g1bb corymgibb...@gmail.com wrote: For the record, here is the code: MediaPlayer player = new