Is it possible to use MMS to stream Internet radio in Android?

maxsap picture maxsap · Jan 20, 2010 · Viewed 8k times · Source

Is possible to play an Internet radio stream in Android? And since most of the Internet radios use MMS to stream their content is that possible using Android?

Answer

Pedro Ghilardi picture Pedro Ghilardi · Jan 20, 2010

Look at this page about audio, video and streaming on Android.

This simple examples was extracted from this page. It creates an instance of media player, set the data source (stream location) and starts the communication.

MediaPlayer mp = new MediaPlayer();
mp.setDataSource(PATH_TO_FILE);
mp.prepare();
mp.start();