summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | [howstuffworks] Skip a broken test caseYen Chi Hsuan2016-04-121-0/+1
| | |
* | | [groupon] Fix extractionYen Chi Hsuan2016-04-121-3/+3
| | |
* | | [goshgay] Fix extractionYen Chi Hsuan2016-04-121-3/+3
| | | | | | | | | | | | | | | isFamilyFriendly no longer exists in the webpage and I can't find another indicator.
* | | [mixcloud] Capture error message (#9156)Sergey M․2016-04-111-1/+11
| | |
* | | Revert "[openclassroom] Add new extractor(closes #9147)"remitamine2016-04-112-43/+0
| | | | | | | | | | | | This reverts commit 13267a2be37371bd3e8aea0bc7549f4ed2465c03.
* | | [openclassroom] Add new extractor(closes #9147)remitamine2016-04-112-0/+43
| | |
* | | [arte.tv:embed] Extended support (#2620)Yen Chi Hsuan2016-04-112-2/+14
| | |
* | | Merge branch 'Phaeilo-presstv'Yen Chi Hsuan2016-04-112-0/+75
|\ \ \
| * | | [presstv] Improve and simplifyYen Chi Hsuan2016-04-111-23/+25
| | | |
| * | | Merge branch 'presstv' of https://github.com/Phaeilo/youtube-dl into ↵Yen Chi Hsuan2016-04-112-0/+73
| |\ \ \ | | | | | | | | | | | | | | | Phaeilo-presstv
| | * | | [presstv] Refactored extractor.Philip Huppert2016-04-101-29/+23
| | | | |
| | * | | [presstv] updated extractor and tests to work with current PressTV websitePhilip Huppert2016-04-091-14/+12
| | | | |
| | * | | [presstv] Added extractor PressTV.Philip Huppert2016-04-092-0/+81
| | | | | | | | | | | | | | | | | | | | Fixes #7060
* | | | | [telebruxelles] Fix extraction (Closes #9142)Sergey M․2016-04-111-6/+8
| | | | |
* | | | | [glide] Improve extraction and extract upload infoSergey M․2016-04-101-8/+20
| | | | |
* | | | | [glide] Fix extraction (Closes #9141)Sergey M․2016-04-101-2/+3
| | | | |
* | | | | [jwplatform:base] Improve subtitles extractionSergey M․2016-04-101-4/+9
| | | | |
* | | | | [screencastomatic] Add duration to testSergey M․2016-04-101-0/+1
| | | | |
* | | | | [jwplatform:base] Extract durationSergey M․2016-04-101-1/+5
| | | | |
* | | | | [screencastomatic] Fix extraction (Closes #9136)Sergey M․2016-04-101-24/+11
| | | | |
* | | | | [ebaumsworlds] Update _VALID_URL (Closes #9135)Sergey M․2016-04-101-2/+2
| | | | |
* | | | | [extractor/extractors] Remove non-existant importsSergey M․2016-04-101-6/+0
| | | | |
* | | | | [cliprs] Add extractor (Closes #9099)Sergey M․2016-04-102-0/+97
| | | | |
* | | | | [extractor/common] Remove irrelevant commentSergey M․2016-04-101-1/+0
|/ / / /
* | | | [test/InfoExtractors] add test for _download_jsonJaime Marquínez Ferrándiz2016-04-091-0/+10
| | | |
* | | | [1tv] Fix extraction (Closes #9103)Sergey M․2016-04-101-42/+97
| | | |
* | | | [test/utils] Add test for date_from_strJaime Marquínez Ferrándiz2016-04-091-0/+8
| | | |
* | | | [test/helper] Check got values to be strings for md5: fieldsYen Chi Hsuan2016-04-091-0/+3
| | | | | | | | | | | | | | | | Seen in PBSIE tests
* | | | [videodetective] Adapt to InternetVideoArchiveIEYen Chi Hsuan2016-04-091-3/+6
| | | |
* | | | [rottentomatoes] Adapt to InternetVideoArchiveIEYen Chi Hsuan2016-04-091-6/+18
| | | |
* | | | [internetvideoarchive] Fix extraction and support json URLsYen Chi Hsuan2016-04-091-60/+58
| | | |
* | | | [funnyordie] Relax M3U8 URL matchingYen Chi Hsuan2016-04-091-2/+2
|/ / / | | | | | | | | | | | | | | | | | | Also, m3u8_url extraction should be fatal as all formats depends directly or indirectly on it. This change fixes test_Generic_26 and TestFunnyOrDieSubtitles
* | | [aol] Add coding cookieSergey M․2016-04-091-0/+1
| | |
* | | [utils] Don't touch URLs if not necessaryYen Chi Hsuan2016-04-091-0/+2
| | | | | | | | | | | | Fix test_Generic_15 (Google redirect)
* | | [aol] add support for videos with vidible IDs(closes #9124)remitamine2016-04-091-3/+75
| | |
* | | Merge pull request #8497 from jaimeMF/lazy-loadYen Chi Hsuan2016-04-0910-1006/+1134
|\ \ \ | | | | | | | | Add experimenta lazy loading of info extractors
| * | | setup.py: add command for building the lazy_extractors moduleJaime Marquínez Ferrándiz2016-04-081-2/+20
| | | |
| * | | lazy extractors: Initialize the real info extractorJaime Marquínez Ferrándiz2016-04-081-2/+4
| | | | | | | | | | | | | | | | According to the docs '__init__' is only called automatically if '__new__' returns an instance of the original class.
| * | | lazy extractors: Output if it's enabled in the verbose logJaime Marquínez Ferrándiz2016-04-082-1/+5
| | | |
| * | | lazy extractors: Style fixesJaime Marquínez Ferrándiz2016-04-083-5/+4
| | | | | | | | | | | | | | | | | | | | * Sort extractors alphabetically * Add newlines when needed (youtube_dl/extractors/lazy_extractors.py pass the flake8 test now)
| * | | lazy extractors: Fix building with python2.6Jaime Marquínez Ferrándiz2016-04-081-3/+3
| | | |
| * | | lazy extractors: specify the encodingJaime Marquínez Ferrándiz2016-04-081-0/+1
| | | | | | | | | | | | | | | | When building with python3 the unicode characters are not escaped, python2 needs to know the encoding.
| * | | Add experimental support for lazy loading the info extractorsJaime Marquínez Ferrándiz2016-04-085-9/+100
| | | | | | | | | | | | | | | | 'make lazy-extractors' creates the youtube_dl/extractor/lazy_extractors.py (imported by youtube_dl/extractor/__init__.py), which contains simplified classes that only have the 'suitable' class method and that load the appropiate class with the '__new__' method when a instance is created.
| * | | Move the extreactors import to youtube_dl/extractor/extractors.pyJaime Marquínez Ferrándiz2016-04-083-990/+994
| | | |
| * | | Delay initialization of InfoExtractors until they are neededJaime Marquínez Ferrándiz2016-04-082-5/+14
|/ / /
* | | [tnaflix] Fix metadata extractionSergey M․2016-04-091-8/+8
| | |
* | | [tnaflix] Fix extraction (Closes #9074)Sergey M․2016-04-081-1/+5
| | |
* | | [extractor/common] Relax _hidden_inputsSergey M․2016-04-081-1/+1
| | |
* | | [gdcvault] Fix extraction (Closes #9107, closes #9114)Sergey M․2016-04-081-7/+9
| | |
* | | [extractor/common] Support arbitrary format strings for template based ↵Sergey M․2016-04-081-1/+1
| | | | | | | | | | | | identifiers in mpd manifests (Closes #9119, closes #9120)