I am currently looking to develop an application that utilises Dash through the ExoPlayer in Android.
To begin with I am going through the demo project however am having trouble with even creating a simple working instance of ExoPlayer that can stream mp3 or similar.
Would really appreciate any help anyone can give relating to getting a very simple exoplayer instance working from which i can adapt and build upon or if anyone has any leads for more references or guides which I can follow as there seems to be very little documentation available.
Thanks very much for all and any help!
Today while working on a project, I found that
this.myExoPlayer = ExoPlayerFactory.newSimpleInstance(getActivity());
and some others are now deprecated and Android studio suggested to use new way. So I did a quick Google for it but everywhere I found the old way. So I looked into theSimpleExoPlayer.java
file, read some methods. So this is how you initialize simpleExoPlayer:I hope this is helpful.