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?
Asked
Active
Viewed 1,761 times
-1
-
Your question is vague. Did you not open the project and find out? The answer IS the code. – tinonetic Sep 01 '16 at 18:45
1 Answers
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