The following code will help you to playing an audio from url.
try {
String httpURL="http://www.yourwebsite.com/audio.mp3";
if ((WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED)
&& RadioInfo.areWAFsSupported(RadioInfo.WAF_WLAN)) {
httpURL += ";interface=wifi";
}
Player player;
player =Manager.createPlayer(httpURL);
player.realize();
player.prefetch();
player.start();
} catch (Exception me) {
Dialog.alert(me.toString());
}
give the following error
ReplyDeletejavax.microedition.media.MediaException: unsupported content type - text/html
try with a mp3 url
ReplyDelete