aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader
AgeCommit message (Collapse)Author
2015-09-23[downloader/hls] Pass http headers to downloaderSergey M․
2015-09-18[postprocessor/ffmpeg] Always use the 'file:' protocol for filenames (fixes ↵Jaime Marquínez Ferrándiz
#6874) If the filename contains ':' it is interpreted as a protocol. It also handles filenames starting with '-'.
2015-09-10[downloader/hls] Properly close streamSergey M․
2015-09-05[downloader/external] Use generalized cli option convertersSergey M․
2015-09-04[downloader/external] change _argless_option function to _valueless_optionremitamine
2015-09-04[downloader/external] add _argless_option for option without argumentsremitamine
2015-09-04[downloader/external] add _bool_option to pass value to bool optionremitamine
2015-09-03[downloader/external] Respect --no-check-certificate for curl and aria2c and ↵remitamine
--proxy for curl
2015-08-31[hls] Properly encode fragment filenameSergey M․
2015-08-31[f4m] Add missing importsSergey M․
2015-08-31Merge pull request #5588 from aajanki/encode_frag_filenamesSergey M.
[f4m] Fix encode error by sanitizing fragment filenames
2015-08-13[downloader/hls] Add _debug_cmdSergey M․
2015-08-13[downloader/fragment] Respect --retries for fragment based downloaders ↵Sergey M․
(Closes #6549)
2015-08-11[downloader/external] Use generic _optionSergey M․
2015-08-11[downloader/external] Forward --proxy to wget and aria2cSergey M․
2015-08-08[downloader/external] Respect --no-check-certificate for wgetSergey M․
2015-08-08adding support for axel download managervijayanand nandam
2015-08-03[downloader/http] Clarify rationale for Content-Range check (#6426)Sergey M․
2015-08-03[downloader/http] Report unable to resumeSergey M․
2015-08-03[downloader/http] SimplifySergey M․
2015-08-03[utils] import reremitamine
2015-08-03[utils] restart download if server does not support byte rangesremitamine
2015-07-29[hls] Implement hlsnative fd in terms of fragment fdSergey M․
2015-07-29[f4m] Implement f4m fd in terms of fragment fdSergey M․
2015-07-29[fragment] Generalize fragmented media file downloaderSergey M․
2015-07-23[downloader/dash] Improve 'combine_url' (fixes #6341)Jaime Marquínez Ferrándiz
In some videos the base_url already ends with '/'.
2015-07-20Merge remote-tracking branch 'yan12125/download-dash-segments' (#5886)Jaime Marquínez Ferrándiz
2015-06-28[downloader/external] Fix externals downloaders specified with extension on ↵Sergey M․
Windows
2015-06-25[downloader/external] Add downloader for httpie (closes #6079)Jaime Marquínez Ferrándiz
2015-06-10[downloader/dash] Add testing facilityYen Chi Hsuan
2015-06-10[downloader/dash] Do not pollute ```self```Yen Chi Hsuan
2015-06-04[downloader/dash] Rename the protocolYen Chi Hsuan
'http_dash_segments' looks more like a protocol name than 'dash_segments'
2015-06-04[downloader/dash] Reorder importsYen Chi Hsuan
2015-06-04[YoutubeDL] Change how DashSegmentsFD is selectedYen Chi Hsuan
2015-06-03[YoutubeDL] Support DASH manifest downloadingYen Chi Hsuan
2015-05-08[downloader/rtmp] Fix a typoYen Chi Hsuan
2015-05-03[downloader/f4m] Fragment filenames must be sanitizedAntti Ajanki
because the fragment was written to a file with a sanitized name by http_dl.download()
2015-05-02Remove code that was only used by the Grooveshark extractorJaime Marquínez Ferrándiz
2015-04-26[downloader/external] Use encodeArgumentSergey M․
2015-04-26[downloader/rtmp] Fix arguments encoding and simplify retry logic (Closes #5528)Sergey M․
2015-04-26[downloader/common] Use decodeArgumentSergey M․
2015-04-26[mplayer] Rename to RTSPSergey M․
2015-04-26[mplayer] SimplifySergey M․
2015-04-26[mplayer] Clarify error messageSergey M․
2015-04-24Added support for mpv if mplayer is not availablemrkrossxdx
2015-04-21[Senate] Add new extractor (#5302)Yen Chi Hsuan
2015-03-28Default to continuedl=TruePhilipp Hagemeister
We already do this in the CLI interface, so it should be just fine.
2015-03-27Don't use bare 'except:'Jaime Marquínez Ferrándiz
They catch any exception, including KeyboardInterrupt, we don't want to catch it.
2015-03-08[downloader/f4m] Fix use of base64 in python 3.2 (fixes #5132)Jaime Marquínez Ferrándiz
b64decode needs a byte string, but on 3.4 it also accepts strings.
2015-03-04[downloader/http] Add missing fields for _hook_progress callJaime Marquínez Ferrándiz
It would fail if you run 'youtube-dl --no-part URL' a second time when the file has already been downloaded. (Reported in Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=1195779)