0

I am working on online radio app, i am using media player for audio streaming. it's working fine with almost all the devices but it's streaming on Samsung s3/s4/s5/s6/s7 Devices. here is my code

        mediaPlayer = new MediaPlayer();
        mediaPlayer.setDataSource(str_url);
        mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
        mediaPlayer.prepare();
        mediaPlayer.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
            @Override
            public void onPrepared(MediaPlayer mp) {
                mediaPlayer.start();
            }
        });
Jonas
  • 121,568
  • 97
  • 310
  • 388
  • 1
    What do you mean by not working? What do you have in your logs? And which kind of url are you trying to stream from? (a static one?) – user3793589 Jul 12 '16 at 19:59
  • ya it's a static one, and in log is 08-28 09:18:17.969: WARN/MediaPlayer(7100): info/warning (703, 0) 08-28 09:18:17.969: WARN/MediaPlayer(7100): info/warning (701, 0) 08-28 09:18:17.969: INFO/MediaPlayer(7100): Info (703,0) 08-28 09:18:17.979: INFO/MediaPlayer(7100): Info (701,0) – Jothiprabhakar S Jul 13 '16 at 05:07

0 Answers0