This is how you launch a media player with a data source. Keep in mind that Android only supports some of the audio / video codecs listed here .
MediaPlayer m = new MediaPlayer(); m.setDataSource("rtsp://rtsp.yourserver.com/stream.mp3"); m.prepare(); m.start();
source share