aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader/fragment.py
Commit message (Collapse)AuthorAgeFilesLines
* [downloader/fragment] Document fragment_retriesSergey M․2016-03-191-0/+4
|
* [downloader/{common,fragment}] Fix total retries reporting on python 2.6Sergey M․2016-03-191-2/+2
|
* [downloader/fragment] Add report_retry_fragmentSergey M․2016-03-191-0/+5
|
* [downloader/fragment] Make speed more smoothSergey M․2016-03-061-1/+2
| | | | | At the beginning of every segment there was a drop to Unknown speed due to timeslice being too small to calculate speed. Now last speed from the previous fragment is used.
* [refactor] Do not specify redundant None as second argument in dict.get()Sergey M․2016-02-141-1/+1
|
* [downloader/fragment] Remove superfluous whitespaceSergey M․2016-01-301-3/+1
|
* [downloader/fragment] Do not report total bytes estimation and eta for live ↵Sergey M․2016-01-301-9/+16
| | | | streams
* [downloader/fragment] Move helper data to context dictSergey M․2016-01-131-11/+14
|
* [downloader/fragment] More smooth calculationsSergey M․2016-01-121-6/+16
| | | | `downloaded_bytes` is now updated on each fragment progress hook invocation
* [downloader/fragment] Remove unused code and fix zero division errorSergey M․2016-01-121-10/+3
|
* [downloader/fragment] Don't fail if the 'Content-Length' header is missingJaime Marquínez Ferrándiz2016-01-101-1/+1
| | | | In some dailymotion videos (like http://www.dailymotion.com/video/x3k0dtv from #8156) the segments URLs don't have the 'Content-Length' header and HttpFD sets the 'totat_bytes' field to None, so we also use '0' in that case (since we do different math operations with it).
* [downloader/fragment] Respect --retries for fragment based downloaders ↵Sergey M․2015-08-131-0/+1
| | | | (Closes #6549)
* [fragment] Generalize fragmented media file downloaderSergey M․2015-07-291-0/+110