• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Slow streaming shoutcast in Android

lacasrac

Lurker
in VLC i get 120 kb/s but in android i get 30-32 kb/sec of a shoutcast.

if in VLC the speed is 200 kb -> on android i get 50-52 kb max

i use this code for the stream:

URLConnection cn = new URL(mUrl).openConnection();
cn.connect(); InputStream stream = cn.getInputStream();

byte buf[] = new byte[16384];
...

do {
int nread = stream.read(buf);
...
while...

what is the solution for this?
 
Back
Top Bottom