aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader/fragment.py
AgeCommit message (Collapse)Author
2016-02-14[refactor] Do not specify redundant None as second argument in dict.get()Sergey M․
2016-01-30[downloader/fragment] Remove superfluous whitespaceSergey M․
2016-01-30[downloader/fragment] Do not report total bytes estimation and eta for live ↵Sergey M․
streams
2016-01-13[downloader/fragment] Move helper data to context dictSergey M․
2016-01-12[downloader/fragment] More smooth calculationsSergey M․
`downloaded_bytes` is now updated on each fragment progress hook invocation
2016-01-12[downloader/fragment] Remove unused code and fix zero division errorSergey M․
2016-01-10[downloader/fragment] Don't fail if the 'Content-Length' header is missingJaime Marquínez Ferrándiz
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).
2015-08-13[downloader/fragment] Respect --retries for fragment based downloaders ↵Sergey M․
(Closes #6549)
2015-07-29[fragment] Generalize fragmented media file downloaderSergey M․