setDataSource を使用してインターネットからライブ オーディオをストリーミングしようとしていますが、URL を追加すると、未処理の例外であると表示されます。
String daytonPolice = "http://relay.radioreference.com:80/691484064";
MediaPlayer mp = new MediaPlayer();
mp.setAudioStreamType(AudioManager.STREAM_MUSIC);
mp.setDataSource(daytonPolice); // It will not take the string of my url
mp.prepareAsync();
mp.start();