Android playing stream m3u using mediaPlayer
问题 I'm building an application that play streaming m3u file from web. I'm using mediaPlayer class and it works. Here's the code : String test_path = "http://cast.idvps.com:8000/djwirya.m3u"; try { mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC); mediaPlayer.setDataSource(test_path); mediaPlayer.prepareAsync(); } catch (IOException e) {Log.e("Error", "No Stream");} mediaPlayer.start(); It was working perfectly. But, after a whie I compiled it again, there's no sound. pls help.... THX