Download streaming video on Android

Viewed 2360

I'm working on a project that shows HLS videos. I handled this part with ExoPlayer but the problem is I have no idea how to download HLS.

I tried Ffmpeg but it increased the size of my app from 5M to 26M. Is there any way to handle that?

1 Answers

Latest version of ExoPlayer supports downloading adaptive streams like HLS and DASH. Its quiet simple and straight forward approach.

Please visit the official documentation here

Related