aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* [vbox7:generic] Add support for vbox7 embedsSergey M․2016-08-172-0/+28
|
* [vbox7] Add support for embed URLsSergey M․2016-08-171-3/+7
|
* [mtg] Improve view count extractionSergey M․2016-08-171-1/+7
|
* [viafree] Add extractor (Closes #10358)Sergey M․2016-08-172-1/+57
|
* [mtg] Add support for viafree URLs (#10358)Sergey M․2016-08-171-12/+29
|
* [fxnetworks] extend _VALID_URL to support simpsonsworld.comRemita Amine2016-08-161-4/+7
|
* [amcnetworks] fix typoRemita Amine2016-08-161-1/+1
|
* [theplatform] extract subtitles with multiple formats from the metadataRemita Amine2016-08-161-2/+2
|
* [xvideos] Fix testSergey M․2016-08-161-2/+2
|
* [xvideos] Fix HLS extraction (Closes #10356)Sergey M․2016-08-161-17/+17
|
* [amcnetworks] extract episode metadataRemita Amine2016-08-161-1/+20
|
* [amcnetworks] Add new extractorRemita Amine2016-08-162-0/+73
|
* [adobepass] PEP 8Sergey M․2016-08-161-1/+1
|
* [bbc:playlist] Fix testsSergey M․2016-08-161-18/+18
|
* [bbc:playlist] Add support for pagination (Closes #10349)Sergey M․2016-08-161-6/+42
|
* [adobepass] add IE suffix to the extractor and remove duplicate constantRemita Amine2016-08-156-13/+12
|
* [fxnetworks] add test and check geo restrictionRemita Amine2016-08-151-0/+18
|
* [fxnetworks] Add new extractor(closes #9462)Remita Amine2016-08-152-0/+50
|
* [cbsnews] Remove invalid tests. CBS Live videos gets deleted soon.Yen Chi Hsuan2016-08-151-10/+4
|
* [ChangeLog] Update for CBSLocal and related changesYen Chi Hsuan2016-08-151-0/+3
|
* [cbslocal] Adapt to SendtoNewsIEYen Chi Hsuan2016-08-151-12/+6
|
* [sendtonews] Fix extractionYen Chi Hsuan2016-08-151-54/+57
|
* [jwplatform] Parse video_id from JWPlayer dataYen Chi Hsuan2016-08-151-4/+6
| | | | And remove a mysterious comma from 115c65793af4c56c8f1986d2640105fc7e760c13
* [zippcast] Remove extractor (Closes #10332)Sergey M․2016-08-152-95/+0
| | | | ZippCast is shut down
* [uplynk,viceland] update tests and change uplynk extractors namesRemita Amine2016-08-142-1/+4
|
* [adobepass] fix check for pendingLogout errorsRemita Amine2016-08-141-1/+1
|
* [adobepass] clear cache in case of pendingLogout errorsRemita Amine2016-08-141-1/+11
|
* [viceland] raise ExtractorError for errors other than HTTP 400Remita Amine2016-08-141-0/+1
|
* [viceland] remove outdated commentRemita Amine2016-08-141-1/+0
|
* [viceland] fix info extraction(closes #8799)Remita Amine2016-08-142-4/+14
|
* [viceland] Add new extractor(#8799)Remita Amine2016-08-142-0/+101
|
* [adobepass] create separate class for adobe pass authenticationRemita Amine2016-08-145-99/+134
|
* [life:embed] Improve extractionSergey M․2016-08-141-19/+49
|
* [theplatform] use _get_netrc_login_info and fix session expiration check(#10345)Remita Amine2016-08-141-7/+8
|
* [common] add separate method for getting netrc ligin infoRemita Amine2016-08-141-10/+20
|
* [vgtv] Detect geo restricted videos (#10348)Sergey M․2016-08-141-0/+12
|
* [uplynk] Add new extractorRemita Amine2016-08-133-0/+74
|
* Update ChangeLog for #10342Yen Chi Hsuan2016-08-141-0/+7
| | | | [skip ci]
* Merge pull request #10342 from muphil/patch-1Yen Chi Hsuan2016-08-141-0/+1
|\ | | | | [xiami] bug fix for extractor xiami.py
| * bug fix for extractor xiami.pyphi2016-08-141-0/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before applying this patch, when downloading resources from xiami.com, it crashes with these: Traceback (most recent call last): File "/home/phi/.local/bin/youtube-dl", line 11, in <module> sys.exit(main()) File "/home/phi/.local/lib/python3.5/site-packages/youtube_dl/__init__.py", line 433, in main _real_main(argv) File "/home/phi/.local/lib/python3.5/site-packages/youtube_dl/__init__.py", line 423, in _real_main retcode = ydl.download(all_urls) File "/home/phi/.local/lib/python3.5/site-packages/youtube_dl/YoutubeDL.py", line 1786, in download url, force_generic_extractor=self.params.get('force_generic_extractor', False)) File "/home/phi/.local/lib/python3.5/site-packages/youtube_dl/YoutubeDL.py", line 691, in extract_info ie_result = ie.extract(url) File "/home/phi/.local/lib/python3.5/site-packages/youtube_dl/extractor/common.py", line 347, in extract return self._real_extract(url) File "/home/phi/.local/lib/python3.5/site-packages/youtube_dl/extractor/xiami.py", line 116, in _real_extract return self._extract_tracks(self._match_id(url))[0] File "/home/phi/.local/lib/python3.5/site-packages/youtube_dl/extractor/xiami.py", line 43, in _extract_tracks '%s/%s%s' % (self._API_BASE_URL, item_id, '/type/%s' % typ if typ else ''), item_id) File "/home/phi/.local/lib/python3.5/site-packages/youtube_dl/extractor/common.py", line 562, in _download_json json_string, video_id, transform_source=transform_source, fatal=fatal) File "/home/phi/.local/lib/python3.5/site-packages/youtube_dl/extractor/common.py", line 568, in _parse_json return json.loads(json_string) File "/usr/lib/python3.5/json/__init__.py", line 312, in loads s.__class__.__name__)) TypeError: the JSON object must be str, not 'NoneType' This patch solves exactly this problem.
* release 2016.08.13Sergey M․2016-08-134-7/+6
|
* [ChangeLog] ActualizeSergey M․2016-08-131-0/+20
|
* [pbs] Clarify comment on http formatsSergey M․2016-08-131-6/+6
|
* [pbs] Fix description extraction and update testsSergey M․2016-08-131-24/+23
|
* [franceculture] Fix extraction (Closes #10324)Sergey M․2016-08-132-77/+26
|
* [pornotube] Fix extraction (Closes #10322)Sergey M․2016-08-131-45/+38
|
* [4tube] Fix metadata extraction (Closes #10321)Sergey M․2016-08-131-5/+5
|
* [bigflix] Remove an invalid testYen Chi Hsuan2016-08-131-9/+0
| | | | There's no video anymore
* [imgur] Fix width and height extraction (Closes #10325)Sergey M․2016-08-131-6/+4
|
* [vbox7] Remove unused importsSergey M․2016-08-131-6/+1
|