-1

I am curious about google sample github respository https://github.com/googlesamples/android-UniversalMusicPlayer android universal music player are not using MediaPlayer or ExoPlayer to stream audio file from url. What exact method that they use in the sample project?

Ng Yong Loon
  • 27
  • 2
  • 13

1 Answers1

1

They do indeed use MediaPlayer as seen in the LocalPlayback class

ianhanniballake
  • 191,609
  • 30
  • 470
  • 443
  • thanks...in that project how they buffering the audio so fast? I create media player on my own but the buffering time is quite long, so i switch to exoplayer – Ng Yong Loon Sep 02 '16 at 02:21