Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Simplify formats accumulation for f4m/m3u8/smil formats | Sergey M․ | 2015-12-29 | 32 | -215/+99 |
| | | | | Now all _extract_*_formats routines return a list | ||||
* | Merge pull request #7769 from remitamine/sort | remitamine | 2015-12-28 | 1 | -6/+5 |
|\ | | | | | [common] lower (m3u8,rtmp,rtsp) format preference only if required program is not available | ||||
| * | [common] use specific variable for protocol preference in _sort_formats | remitamine | 2015-12-28 | 1 | -6/+5 |
| | | |||||
* | | Merge pull request #8023 from remitamine/extract-formats | remitamine | 2015-12-28 | 1 | -2/+2 |
|\ \ | | | | | | | [common] simplify the use of _extract_m3u8_formats and _extract_f4m_formats | ||||
| * | | [common] simplify the use of _extract_m3u8_formats and _extract_f4m_formats | remitamine | 2015-12-27 | 1 | -2/+2 |
| | | | |||||
* | | | Merge branch 'zdf'(fixes #8024) | remitamine | 2015-12-28 | 2 | -101/+161 |
|\ \ \ | |||||
| * | | | [zdf] fix formats extraction | remitamine | 2015-12-28 | 2 | -101/+161 |
| | | | | |||||
* | | | | [facebook] Fix authentication | Sergey M․ | 2015-12-28 | 1 | -4/+11 |
| | | | | |||||
* | | | | [facebook] Extract login error | Sergey M․ | 2015-12-28 | 1 | -0/+5 |
| | | | | |||||
* | | | | [cspan] Fix extraction (fixes #8032) | Jaime Marquínez Ferrándiz | 2015-12-28 | 1 | -4/+6 |
| | | | | |||||
* | | | | [cspan] Initialize 'video_type' to avoid 'UnboundLocalError' exceptions (#8032) | Jaime Marquínez Ferrándiz | 2015-12-28 | 1 | -0/+3 |
|/ / / | |||||
* | | | Merge branch 'dcn' of github.com:remitamine/youtube-dl into remitamine-dcn | remitamine | 2015-12-28 | 2 | -34/+151 |
|\ \ \ | |||||
| * | | | [dcn] make m3u8 formats extraction non fatal | remitamine | 2015-12-28 | 1 | -18/+7 |
| | | | | |||||
| * | | | [dcn] improve extraction | remitamine | 2015-12-27 | 2 | -83/+67 |
| | | | | |||||
| * | | | [dcn] improve season info extraction | remitamine | 2015-10-31 | 1 | -13/+11 |
| | | | | |||||
| * | | | correct season info extraction and simplify | remitamine | 2015-09-05 | 1 | -33/+31 |
| | | | | |||||
| * | | | [dcn] add support for live streams and catchup videos | remitamine | 2015-09-04 | 2 | -1/+62 |
| | | | | |||||
| * | | | correct the extractor name and id and remove unnecessary request | remitamine | 2015-09-03 | 2 | -11/+19 |
| | | | | |||||
| * | | | [dcn] add show extraction and support for other types of urls | remitamine | 2015-09-03 | 2 | -4/+83 |
| | | | | |||||
* | | | | [tunein] add support for tunein topic,clip and program(fixes #7348) | remitamine | 2015-12-28 | 2 | -61/+138 |
| | | | | |||||
* | | | | [utils] Remove Content-encoding from headers after decompression | Yen Chi Hsuan | 2015-12-28 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With cn_verification_proxy, our http_response() is called twice, one from PerRequestProxyHandler.proxy_open() and another from normal YoutubeDL.urlopen(). As a result, for proxies honoring Accept-Encoding, the following bug occurs: $ youtube-dl -vs --cn-verification-proxy https://secure.uku.im:993 "test:letv" [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['-vs', '--cn-verification-proxy', 'https://secure.uku.im:993', 'test:letv'] [debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8 [debug] youtube-dl version 2015.12.23 [debug] Git HEAD: 97f18fa [debug] Python version 3.5.1 - Linux-4.3.3-1-ARCH-x86_64-with-arch-Arch-Linux [debug] exe versions: ffmpeg 2.8.4, ffprobe 2.8.4, rtmpdump 2.4 [debug] Proxy map: {} [TestURL] Test URL: http://www.letv.com/ptv/vplay/22005890.html [Letv] 22005890: Downloading webpage [Letv] 22005890: Downloading playJson data ERROR: Unable to download JSON metadata: Not a gzipped file (b'{"') (caused by OSError('Not a gzipped file (b\'{"\')',)); please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; see https://yt-dl.org/update on how to update. Be sure to call youtube-dl with the --verbose flag and include its complete output. File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/extractor/common.py", line 330, in _request_webpage return self._downloader.urlopen(url_or_request) File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/YoutubeDL.py", line 1886, in urlopen return self._opener.open(req, timeout=self._socket_timeout) File "/usr/lib/python3.5/urllib/request.py", line 471, in open response = meth(req, response) File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/utils.py", line 773, in http_response raise original_ioerror File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/utils.py", line 761, in http_response uncompressed = io.BytesIO(gz.read()) File "/usr/lib/python3.5/gzip.py", line 274, in read return self._buffer.read(size) File "/usr/lib/python3.5/gzip.py", line 461, in read if not self._read_gzip_header(): File "/usr/lib/python3.5/gzip.py", line 409, in _read_gzip_header raise OSError('Not a gzipped file (%r)' % magic) | ||||
* | | | | [vgtv] fix f4m downloading(fixes #7843) | remitamine | 2015-12-27 | 1 | -9/+9 |
| | | | | |||||
* | | | | [livestream] change test url | remitamine | 2015-12-27 | 1 | -1/+1 |
| | | | | |||||
* | | | | [iqiyi] Add tests for #7894 | Yen Chi Hsuan | 2015-12-28 | 1 | -0/+9 |
| | | | | |||||
* | | | | [iqiyi]fix valid url | forDream | 2015-12-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | eg: http://yule.iqiyi.com/zbj.html | ||||
* | | | | Update iqiyi.py | gam2046 | 2015-12-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Fix part of the address can not be resolved. eg:http://www.iqiyi.com/w_19rt6o8t9p.html | ||||
* | | | | [jwplatform] Carry long line | Sergey M․ | 2015-12-27 | 1 | -1/+2 |
| | | | | |||||
* | | | | [viki] Fix typo | Sergey M․ | 2015-12-27 | 1 | -1/+1 |
| | | | | |||||
* | | | | [rai] Fix typos | Sergey M․ | 2015-12-27 | 1 | -2/+2 |
| | | | | |||||
* | | | | [jwplatform] Fix typo | Sergey M․ | 2015-12-27 | 1 | -1/+1 |
| | | | | |||||
* | | | | [esri] Fix typo | Sergey M․ | 2015-12-27 | 1 | -1/+1 |
| | | | | |||||
* | | | | [abc7news] Remove redundant formats sorting | Sergey M․ | 2015-12-27 | 1 | -1/+0 |
| |/ / |/| | | |||||
* | | | Merge branch 'master' of github.com:rg3/youtube-dl | remitamine | 2015-12-27 | 1 | -2/+4 |
|\ \ \ | |||||
| * \ \ | Merge branch 'master' of github.com:rg3/youtube-dl | Philipp Hagemeister | 2015-12-27 | 1 | -121/+217 |
| |\ \ \ | |||||
| * | | | | [sportdeutschland] Do not abort if meta info is missing | Philipp Hagemeister | 2015-12-27 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | This fixes http://sportdeutschland.tv/badminton/yonex-copenhagen-masters-2015 . No testcase though since the event will be over by 2016. | ||||
* | | | | | [livestream] skip m3u8 manifest in progressive_urls | remitamine | 2015-12-27 | 1 | -0/+2 |
| |/ / / |/| | | | |||||
* | | | | Merge pull request #7892 from remitamine/livestream | remitamine | 2015-12-27 | 1 | -121/+217 |
|\ \ \ \ | |/ / / |/| | | | [livestream] improve extraction(fixes #2133)(fixes #2838)(fixes #4152)(fixes #6988) | ||||
| * | | | [livestream] improve extraction | remitamine | 2015-12-27 | 1 | -38/+76 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - split long lines - use m3u8 entry protocol for live streams - extend _VALID_URL regex for livestream original - extract livestream original live streams | ||||
| * | | | [livestream] improve extraction, add support for live streams and extract ↵ | remitamine | 2015-12-17 | 1 | -110/+168 |
| | | | | | | | | | | | | | | | | more info and formats | ||||
* | | | | Merge pull request #7851 from remitamine/kaltura | remitamine | 2015-12-27 | 2 | -11/+19 |
|\ \ \ \ | | | | | | | | | | | [kaltura] extract more formats | ||||
| * | | | | [kaltura] add referrer to m3u8 url | remitamine | 2015-12-27 | 1 | -3/+4 |
| | | | | | |||||
| * | | | | [kaltura] extract more formats | remitamine | 2015-12-11 | 2 | -11/+18 |
| | | | | | |||||
* | | | | | [lrt] Extract counters | Sergey M․ | 2015-12-27 | 1 | -0/+12 |
| | | | | | |||||
* | | | | | [lrt] Improve | Sergey M․ | 2015-12-27 | 1 | -4/+7 |
| | | | | | |||||
* | | | | | [lrt] fix the rest of extractor | Giedrius Statkevičius | 2015-12-26 | 1 | -22/+3 |
| | | | | | | | | | | | | | | | | | | | | Closes #7690. | ||||
* | | | | | [lrt] fix duration parsing | Giedrius Statkevičius | 2015-12-26 | 1 | -2/+1 |
| | | | | | |||||
* | | | | | [ign] flake8 | Sergey M․ | 2015-12-26 | 1 | -2/+2 |
| | | | | | |||||
* | | | | | Merge pull request #7045 from remitamine/ign | remitamine | 2015-12-25 | 2 | -32/+115 |
|\ \ \ \ \ | | | | | | | | | | | | | [ign] add support for pcmag and extract all formats and more metadata(fixes #5335)(fixes #7006) | ||||
| * | | | | | [ign] improve extraction and extract uploader_id | remitamine | 2015-12-11 | 1 | -7/+19 |
| | | | | | | |||||
| * | | | | | [ign] add tests for me.ign specific language urls | remitamine | 2015-10-14 | 1 | -0/+8 |
| | | | | | |