Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I download the video from url in background(Android) like vimeo app

I am developing one video streaming app but I'm stuck on downloading video in Android app, I want to download the video in background exact like vimeo app, in vimeo app if you want to download the video, it will starting the video downloading in another screen(Download Screen) in background, if you go in download screen it already started the video downloading, one more thing is that if you traverse through out the app, it still downloading the video in background in the download screen and when you come to the download screen it will show you the updated downloading progress.

1) To download the video in vimeo enter image description here

2) Downloading screenenter image description here

Please give me suggestion on the downloading manager

like image 528
Sahadev Avatar asked Nov 08 '22 11:11

Sahadev


1 Answers

The underlying architecture of the download system in the Vimeo app is currently in the middle of the open-sourcing process. If you can wait a few weeks you will have access to it. If not, there are plenty of other open-sourced "download" systems out there such as:

android-priority-jobqueue

tape

robospice

Ultimately, none of these met the exact needs of the Vimeo app, so we decided to write our own. I'll try to update this answer when it is available.

like image 128
Kevin Z Avatar answered Nov 15 '22 04:11

Kevin Z