I am facing problem to play a audio url using MediaPlayer as well as native Android audio player. Here is my url http://live.politiafm.com:8500/politiafm.mp3
Here is my code Using native audio player Intent intent = new Intent(android.content.Intent.ACTION_VIEW); intent.setDataAndType(Uri.parse(STREAM_URL), "audio/*"); StartActivity(intent); Using Media Player MediaPlayer mp = new MediaPlayer(); mp.setAudioStreamType(AudioManager.STREAM_MUSIC); mp.create(Landing.this, Uri.parse(STREAM_URL));
mp.prepareAsync();
mp.start();
In both the cases audio is not playing. Can some body help me out from this trouble.
Thanks & Regards