Questions tagged [resume-download]

Tag for questions regarding resuming an interrrupted download - for example, using HTTP Range and Content-range headers.

Tag for questions regarding resuming an interrrupted download - for example, using HTTP Range and Content-range headers.

74 questions
1
vote
0 answers

URLSessionDownloadTask doesn't resume on fail

URLSessionDownload Task works well for video download but some Authenticated Vimeo URLs for HQ videos(large data) generates following error with no resume data. So how do I resume download ??? I am getting error while downloading video task fails…
1
vote
0 answers

How to allow download resuming but prevent segmented downloading?

I have a php script which generates a file to be downloaded. I added all the necessary stuff and byte serving is working very well. You can pause and resume, use tools that download multiple segments of the file to maximize speed and such. However,…
Lynesth
  • 81
  • 6
1
vote
1 answer

PycURL RESUME_FROM

I can't seem to get the RESUME_FROM option to work. Here's some example code that I have been testing with: import os import pycurl import sys def progress(total, existing, upload_t, upload_d): try: frac = float(existing)/float(total) …
excid3
  • 1,658
  • 15
  • 31
1
vote
0 answers

Download resume not working in setRequestProperty method

This is my doInBackground method: @Override protected String doInBackground(String... sUrl) { InputStream input = null; HttpURLConnection conection = null; BufferedOutputStream bout = null; FileOutputStream…
1
vote
1 answer

Download file with pause and resume button?

I've googled much and I don't find my solution about two pause and resume button. I use from this code and this . But I don't know how implement pause and resume capability and set what to my pause and resume button onclick…
Naruto Uzumaki
  • 2,019
  • 18
  • 37
1
vote
1 answer

NSURLSessionDownloadTask cancelByProducingResumeData return null

I use NSURLSessionDownloadTask to download a file from server, it is run in a background session. I want to save resume data to resume the download when the app is terminated. However, the call of cancelByProducingResumeData always returns null. I…
1
vote
1 answer

How do I resume large file downloads, and obtain download progress using the ServiceStack client?

I have a ServiceStack client that calls a service which returns an large data file of between 100MB to 10GB. Currently this client works perfectly over the LAN using the Stream.CopyTo method to save to file. When the client is being run over a WAN…
Seer
  • 495
  • 5
  • 20
1
vote
0 answers

how to make python urllib2 download file with authentication, gui (only showing downloaded file %) and resume capability?

so far i have done this: import urllib2, base64, os def dl(): dwnld="http://xxx.xxx.xxx.xxx:xx/user/file.zip" username="user" password="pass" req=urllib2.Request(dwnld) base64str=base64.encodestring('%s:%s' % (username,…
1
vote
1 answer

Downloading a file from spring controllers with resume support

Downloading a file from spring controllers Above is the original article, however i wish to have resume support, means that i can dowmload 51% 1st, and then download another 49% on other time. environment tomcat 7.0.39 i tried some, but still…
Stupidfrog
  • 2,042
  • 6
  • 25
  • 35
1
vote
1 answer

Downloading a file using NSURLConnection?

I have an API that gets me the file URL to download. I am using NSURLConnection to download the file. The file size could be a little big because it's an MP4. Code Steps: Initialized NSMutableURLRequest and added HttpHeaderField to it with the byte…
hasan
  • 23,815
  • 10
  • 63
  • 101
1
vote
1 answer

Async Task doInBackground not performed

I have a series of asyncTasks to be performed one after the other to download pdfs from the server.But sometimes when i minimize the app and then resume it (with downloads in the background) the very next asyncTask to be executed soon after the…
HjK
  • 3,513
  • 1
  • 17
  • 23
1
vote
1 answer

Resume abandoned downloads with php ftp?

Is there any way to resume a broken download via an ftp connction established with php? Can php resume a broken download?
Marcel
0
votes
2 answers

Android pause and resume downloading file to sdcard

I am making an application in which I need to download a file from server and save it to sd card of android device. Apart of this there is a feature for the user to pause and resume the file. The problem I am facing is that I am able to download…
user990876
  • 61
  • 1
  • 3
0
votes
1 answer

How to download a file with resume support using Indy?

I have already tried code from StackOverflow, f.e. Download, pause and resume an download using Indy components. But when I try to use IdHttp1.Disconnect() in order to pause download and then resume it, the download does not resume. The file is…
user10825637
0
votes
0 answers

Resume File Upload from User's machine to Azure Blob Storage and Download file from Azure Blob to User's machine in Typescript(angular) from Browser

I am very new to Angular. Can anyone please help me how can I RESUME file upload from User's machine to Azure Blob Storage and download file from Azure Blob to user's machine in Typescript(angular) from Browser. I am using @azure/storage-blob npm…