I am finding big differences in the time it takes the Android MediaPlayer to prepare for live stream playback with different streams.
The hard data
I added logging between prepareAsync() and the onPrepared(MediaPlayer mp) callback and tested several streams a few times each. The times for each stream were very consistent (+/- one second), and here are the results:
- MPR news stream: 27 seconds (http://newsstream1.publicradio.org:80/)
- MPR classical music stream: 15 seconds (http://classicalstream1.publicradio.org:80/)
- MPR The Current stream: 7 seconds (http://currentstream1.publicradio.org:80/)
- PRI stream: 52 seconds (http://pri-ice.streamguys.biz/pri1)
The tests were performed on a Nexus S with Android 2.3.4 on a 3G connection (~1100 Kbps).
Playing non-streaming MP3 audio files is not an issue.
Here are snippets of how I am playing the streams:
Prepare MediaPlayer:
...
mediaPlayer.setDataSource(playUrl);
mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mediaPlayer.prepareAsync();
...
Then in onPrepared(MediaPlayer mp):
mediaPlayer.start();
Why does it take so long to prepare some streams but not others? The above data seems to suggest that it might be based on the amount of data that has been buffered and not the duration of the buffered audio content. Could this really be?
Update: I have tested live streaming on physical devices with Android 1.6, 2.2 and 2.3.4 and emulators with 1.6, 2.1, 2.2, 2.3.1 and 2.3.3. I am only seeing the long delay on 2.3.3 and 2.3.4. The older versions start playback within 5 seconds.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…