Does Android support HLS Adaptive Bitrate Streaming

15.6k Views Asked by At

I'm trying to implement adaptive bit-rate streaming in my app that automatically switch the quality depending on the connection speed. How could I achieve this. Is there is any third party library available for this. does the default android video view support adaptive bit-rate streaming?

2

There are 2 best solutions below

3
On BEST ANSWER

Android supports HLS, please have a look at the Android documentation about Supported Media Formats.

There is also the ExoPlayer Open Source project, which supports MPEG-DASH and I think also HLS, which can be used to build native apps.

If you want to use the webview (or support playback in the browser) you could also use web-based players, like the Bitmovin Adaptive Streaming Player, which also supports MPEG-DASH and HLS.

0
On

Android has a easy way to perform a player with Adaptative HLS Streaming. In this case Exoplayer has a many advantage to perform this.

If you use Android Studio you can begin with this example that use Exoplayer:

1-Download the project and extract.

2-Build the entire project with Android Studio.

3-Test with emulator or Device

Link to Android Project: https://drive.google.com/file/d/1GFXLqb8OdmWG-Kvu2DB4H3rZxv6E2v/view?usp=sharing

4- Touch the button card and play online movie.

I hope can help you!. Good luck