Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Mp3 play from url

How do I run the following tutorial using an online mp3 url? I tried replacing the url but it doesn't seem to be working. I want to use the same code but with the url. Does anyone have any suggestions?

The tutorial linke: http://www.tutorialspoint.com/android/android_mediaplayer.htm The mp3 url is: http://searchgurbani.com/audio/sggs/1.mp3

like image 533
user3187131 Avatar asked Jan 24 '14 22:01

user3187131


2 Answers

How to play an .mp3 from the /raw folder:

Download the .mp3 file, save it to song.mp3 and paste into the /raw folder. If you don´t have /raw folder, just create it into the /res folder.

enter image description here

this example doesn´t load the .mp3 from internet, play the .mp3 from the resources.

  mediaPlayer = MediaPlayer.create(this, R.raw.song);

How to play an .mp3 from the url:,

change the oncreate() method of the example to:

  @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main_video);
      songName = (TextView)findViewById(R.id.textView4);
      startTimeField =(TextView)findViewById(R.id.textView1);
      endTimeField =(TextView)findViewById(R.id.textView2);
      seekbar = (SeekBar)findViewById(R.id.seekBar1);
      playButton = (ImageButton)findViewById(R.id.imageButton1);
      pauseButton = (ImageButton)findViewById(R.id.imageButton2);
      songName.setText("song.mp3");    
    //mediaPlayer = MediaPlayer.create(this, R.raw.song);
      Uri myUri = Uri.parse("http://searchgurbani.com/audio/sggs/1.mp3");      
      try {
          mediaPlayer = new MediaPlayer();
          mediaPlayer.setDataSource(this, myUri);
          mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
          mediaPlayer.prepare(); //don't use prepareAsync for mp3 playback
          mediaPlayer.start();
       } catch (IOException e) {           
          e.printStackTrace();
      }                  
      seekbar.setClickable(false);
      pauseButton.setEnabled(false);

   }

so you will able to play the audio mp3 from the url specified.

don´t forget to add

 <uses-permission android:name="android.permission.INTERNET"/>

into your Manifest.xml

like image 137
Jorgesys Avatar answered Oct 24 '22 22:10

Jorgesys


Through URL

    try {
        String url = "http://www.all-birds.com/Sound/western%20bluebird.wav"; // your URL here
        MediaPlayer mediaPlayer = new MediaPlayer();
        mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
        mediaPlayer.setDataSource(url);
        mediaPlayer.prepare(); // might take long! (for buffering, etc)
        mediaPlayer.start();
    }catch (Exception e){
        e.printStackTrace();
    }

Through res ---> inside --> row Folder

MediaPlayer mp2 = MediaPlayer.create(this, R.raw.genuine_);
mp2.start();
like image 36
Keshav Gera Avatar answered Oct 24 '22 22:10

Keshav Gera