Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-30 | [options] Prefer --convert-subs spelling | Sergey M․ | |
2015-12-30 | [videomore] Set IE_NAME | Sergey M․ | |
2015-12-30 | [dramafever] Fix subtitles extraction (Closes #8049) | Sergey M․ | |
2015-12-29 | [extractor/generic] Add support for videomore embeds | Sergey M․ | |
2015-12-29 | [videomore] Add extractor (Closes #8040) | Sergey M․ | |
2015-12-29 | Merge branch 'jukebox' of https://github.com/remitamine/youtube-dl into ↵ | remitamine | |
remitamine-jukebox | |||
2015-12-29 | [srgssr] use SRFIE format ids | remitamine | |
2015-12-29 | Credit @flatgreen for FranceCultureEmission (#8022) | Jaime Marquínez Ferrándiz | |
2015-12-29 | [wdr] split long lines | remitamine | |
2015-12-29 | [ooyala] split long lines, fix test duration and add hdcode param to hds url | remitamine | |
2015-12-29 | [rai] split long lines | remitamine | |
2015-12-29 | [tele13] split long lines | remitamine | |
2015-12-29 | [srgssr] split long lines and use m3u8_native | remitamine | |
2015-12-29 | [ign] split long lines | remitamine | |
2015-12-29 | [audimedia] split long lines | remitamine | |
2015-12-29 | [srgssr] fix IE_DESC | remitamine | |
2015-12-29 | [phoenix] fix IE_NAME | remitamine | |
2015-12-29 | [daum] fix IE_NAME | remitamine | |
2015-12-29 | Merge branch 'remitamine-srgssr' | remitamine | |
2015-12-29 | [srgssr] update tests | remitamine | |
2015-12-29 | release 2015.12.292015.12.29 | Philipp Hagemeister | |
2015-12-29 | Merge branch 'srgssr' of https://github.com/remitamine/youtube-dl into ↵ | remitamine | |
remitamine-srgssr | |||
2015-12-29 | Merge branch 'daum' of https://github.com/remitamine/youtube-dl into ↵ | remitamine | |
remitamine-daum | |||
2015-12-28 | [franceculture] Add extractor for '/emission-*' urls (closes #3777, closes ↵ | flatgreen | |
#8022) | |||
2015-12-28 | [franceculture] Fix test | Jaime Marquínez Ferrándiz | |
2015-12-29 | Simplify formats accumulation for f4m/m3u8/smil formats | Sergey M․ | |
Now all _extract_*_formats routines return a list | |||
2015-12-28 | Merge pull request #7769 from remitamine/sort | remitamine | |
[common] lower (m3u8,rtmp,rtsp) format preference only if required program is not available | |||
2015-12-28 | [common] use specific variable for protocol preference in _sort_formats | remitamine | |
2015-12-28 | Merge pull request #8023 from remitamine/extract-formats | remitamine | |
[common] simplify the use of _extract_m3u8_formats and _extract_f4m_formats | |||
2015-12-28 | Merge branch 'zdf'(fixes #8024) | remitamine | |
2015-12-28 | [zdf] fix formats extraction | remitamine | |
2015-12-28 | [facebook] Fix authentication | Sergey M․ | |
2015-12-28 | [facebook] Extract login error | Sergey M․ | |
2015-12-28 | [cspan] Fix extraction (fixes #8032) | Jaime Marquínez Ferrándiz | |
2015-12-28 | [cspan] Initialize 'video_type' to avoid 'UnboundLocalError' exceptions (#8032) | Jaime Marquínez Ferrándiz | |
2015-12-28 | Merge branch 'dcn' of github.com:remitamine/youtube-dl into remitamine-dcn | remitamine | |
2015-12-28 | [dcn] make m3u8 formats extraction non fatal | remitamine | |
2015-12-28 | [tunein] add support for tunein topic,clip and program(fixes #7348) | remitamine | |
2015-12-28 | [utils] Remove Content-encoding from headers after decompression | Yen Chi Hsuan | |
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) | |||
2015-12-27 | [vgtv] fix f4m downloading(fixes #7843) | remitamine | |
2015-12-27 | [livestream] change test url | remitamine | |
2015-12-28 | [iqiyi] Add tests for #7894 | Yen Chi Hsuan | |
2015-12-28 | [iqiyi]fix valid url | forDream | |
eg: http://yule.iqiyi.com/zbj.html | |||
2015-12-28 | Update iqiyi.py | gam2046 | |
Fix part of the address can not be resolved. eg:http://www.iqiyi.com/w_19rt6o8t9p.html | |||
2015-12-27 | [jwplatform] Carry long line | Sergey M․ | |
2015-12-27 | [viki] Fix typo | Sergey M․ | |
2015-12-27 | [rai] Fix typos | Sergey M․ | |
2015-12-27 | [jwplatform] Fix typo | Sergey M․ | |
2015-12-27 | [esri] Fix typo | Sergey M․ | |
2015-12-27 | [abc7news] Remove redundant formats sorting | Sergey M․ | |