Created
March 8, 2018 23:02
-
-
Save nazmulidris/f1d66dd5f5962aa187909fec9eaaf687 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Create player | |
| player = ExoPlayerFactory.newSimpleInstance( | |
| // Renders audio, video, text (subtitles) content | |
| DefaultRenderersFactory(ctx), | |
| // Choose best audio, video, text track from available sources, | |
| // based on bandwidth, device capabilities, language, etc | |
| DefaultTrackSelector(), | |
| // Manage buffering and loading data over the network | |
| DefaultLoadControl() | |
| ).apply { ... } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment