1

我确信这个问题之前已经被问过,但我一直无法找到一个可靠的答案。我正在尝试从服务器加载流式音频。它是一个音频/aac 文件

http://3363.live.streamtheworld.com:80/CHUMFMAACCMP3

我正在使用的代码是

private void playAudio(String str) {
  try {
   final String path = str;

   if (path == null || path.length() == 0) {
    Toast.makeText(RadioPlayer.this, "File URL/path is empty",
      Toast.LENGTH_LONG).show();

   } else {
    // If the path has not changed, just start the media player


    MediaPlayer mp = new MediaPlayer();

    mp.setAudioStreamType(AudioManager.STREAM_MUSIC);


    try{
     mp.setDataSource(getDataSource(path));
     mp.prepareAsync();
     mp.start();
    }catch(IOException e){
     Log.i("ONCREATE IOEXCEPTION", e.getMessage());
    }catch(Exception e){
     Log.i("ONCREATE EXCEPTION", e.getMessage());
    } 


   }
  } catch (Exception e) {
   Log.e("RPLAYER EXCEPTION", "error: " + e.getMessage(), e);

  }
 }

 private String getDataSource(String path) throws IOException {
  if (!URLUtil.isNetworkUrl(path)) {
   return path;
  } else {
   URL url = new URL(path);
   URLConnection cn = url.openConnection();
   cn.connect();
   InputStream stream = cn.getInputStream();
   if (stream == null)
    throw new RuntimeException("stream is null");
   File temp = File.createTempFile("mediaplayertmp", ".dat");
   temp.deleteOnExit();
   String tempPath = temp.getAbsolutePath();
   FileOutputStream out = new FileOutputStream(temp);
   byte buf[] = new byte[128];
   do {
    int numread = stream.read(buf);
    if (numread <= 0)
     break;
    out.write(buf, 0, numread);
   } while (true);
   try {
    stream.close();
   } catch (IOException ex) {
    Log.e("RPLAYER IOEXCEPTION", "error: " + ex.getMessage(), ex);
   }
   return tempPath;
  }
 }

这是正确的实现吗?我不确定我哪里出错了。有人可以请帮我解决这个问题。

4

2 回答 2

1

该方法prepareAsync()是异步的——引用文档:

异步准备播放器进行播放。

你需要打电话setOnPreparedListener(),提供一个MediaPlayer.OnPreparedListener. 然后,在那个监听器中onPrepared(),你可以调用start().

于 2010-12-26T09:43:36.283 回答
0

不支持 AAC 流格式,Android 2.2 以下无法直接播放 Shoutcast 流。

于 2011-01-31T14:52:18.140 回答