Created
November 17, 2016 14:37
-
-
Save yusufcakmak/eed57c72525299c909b31d13c8ee0f81 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
simpleExoPlayerView = (SimpleExoPlayerView) findViewById(R.id.player_view); | |
simpleExoPlayerView.requestFocus(); | |
simpleExoPlayerView.setPlayer(player); | |
MediaSource mediaSource = new HlsMediaSource(Uri.parse("https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8"), | |
mediaDataSourceFactory, mainHandler, null); | |
player.prepare(mediaSource); | |
player.setPlayWhenReady(true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment