我正在使用 MediaPlayer 功能在我的 android 应用程序中从远程服务器流式传输实时音频流。但是音频断断续续,口吃。问题不在于我的互联网,因为当我在计算机上播放提要时,它可以完美播放。可能是什么问题?*注意:流是实时的。这是我正在使用的代码:
MediaPlayer mp = new MediaPlayer();
try{
mp.setDataSource("http://radiotool:80/feed 342.mp3");//hardcoded for testing purposes
mp.prepare();
mp.start();
}
catch(Exception e)
{Log.d("Error came up man",", check the internet connection and stuff..");