Reputation: 7000
i'm new in BB develop.
I need to stream audio in BB app.
It's a simple webradio (very simple).
I tried this code:
Player p = javax.microedition.media.Manager.createPlayer("rtsp://....");
p.realize();
VolumeControl volume = (VolumeControl)p.getControl("VolumeControl");
volume.setLevel(30);
p.prefetch();
p.start();
Don't work !!! (tried in simulator)
In this project I use BlackBerry JRE 7.0.0.
Upvotes: 1
Views: 245
Reputation: 304
There are some issues I've found:
BTW, try your code in a physical device and let us know if it works! :)
HTH
Upvotes: 2