aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-13[netease] Skip all tests: completely georestrictedYen Chi Hsuan
2016-04-13Credit @Phaeilo for presstv (#7113)Sergey M․
2016-04-12[youtube:playlist] Recognize popular uploads playlist as mix (Closes #9170)Sergey M․
2016-04-12[ard] Change subtitles extension to ttml (Closes #9169)Sergey M․
ttml is now served instead of srt
2016-04-12[jadorecettepub] Remove extractor: website goneYen Chi Hsuan
2016-04-12[izlesene] Fix extractionYen Chi Hsuan
description may be absent
2016-04-12[howstuffworks] Skip a broken test caseYen Chi Hsuan
2016-04-12[groupon] Fix extractionYen Chi Hsuan
2016-04-12[goshgay] Fix extractionYen Chi Hsuan
isFamilyFriendly no longer exists in the webpage and I can't find another indicator.
2016-04-11[mixcloud] Capture error message (#9156)Sergey M․
2016-04-11Revert "[openclassroom] Add new extractor(closes #9147)"remitamine
This reverts commit 13267a2be37371bd3e8aea0bc7549f4ed2465c03.
2016-04-11[openclassroom] Add new extractor(closes #9147)remitamine
2016-04-11[arte.tv:embed] Extended support (#2620)Yen Chi Hsuan
2016-04-11Merge branch 'Phaeilo-presstv'Yen Chi Hsuan
2016-04-11[presstv] Improve and simplifyYen Chi Hsuan
2016-04-11Merge branch 'presstv' of https://github.com/Phaeilo/youtube-dl into ↵Yen Chi Hsuan
Phaeilo-presstv
2016-04-11[telebruxelles] Fix extraction (Closes #9142)Sergey M․
2016-04-10[glide] Improve extraction and extract upload infoSergey M․
2016-04-10[glide] Fix extraction (Closes #9141)Sergey M․
2016-04-10[jwplatform:base] Improve subtitles extractionSergey M․
2016-04-10[screencastomatic] Add duration to testSergey M․
2016-04-10[jwplatform:base] Extract durationSergey M․
2016-04-10[screencastomatic] Fix extraction (Closes #9136)Sergey M․
2016-04-10[ebaumsworlds] Update _VALID_URL (Closes #9135)Sergey M․
2016-04-10[presstv] Refactored extractor.Philip Huppert
2016-04-10[extractor/extractors] Remove non-existant importsSergey M․
2016-04-10[cliprs] Add extractor (Closes #9099)Sergey M․
2016-04-10[extractor/common] Remove irrelevant commentSergey M․
2016-04-09[test/InfoExtractors] add test for _download_jsonJaime Marquínez Ferrándiz
2016-04-10[1tv] Fix extraction (Closes #9103)Sergey M․
2016-04-09[test/utils] Add test for date_from_strJaime Marquínez Ferrándiz
2016-04-09[presstv] updated extractor and tests to work with current PressTV websitePhilip Huppert
2016-04-09[test/helper] Check got values to be strings for md5: fieldsYen Chi Hsuan
Seen in PBSIE tests
2016-04-09[videodetective] Adapt to InternetVideoArchiveIEYen Chi Hsuan
2016-04-09[rottentomatoes] Adapt to InternetVideoArchiveIEYen Chi Hsuan
2016-04-09[internetvideoarchive] Fix extraction and support json URLsYen Chi Hsuan
2016-04-09[presstv] Added extractor PressTV.Philip Huppert
Fixes #7060
2016-04-09[funnyordie] Relax M3U8 URL matchingYen Chi Hsuan
Also, m3u8_url extraction should be fatal as all formats depends directly or indirectly on it. This change fixes test_Generic_26 and TestFunnyOrDieSubtitles
2016-04-09[aol] Add coding cookieSergey M․
2016-04-09[utils] Don't touch URLs if not necessaryYen Chi Hsuan
Fix test_Generic_15 (Google redirect)
2016-04-09[aol] add support for videos with vidible IDs(closes #9124)remitamine
2016-04-09Merge pull request #8497 from jaimeMF/lazy-loadYen Chi Hsuan
Add experimenta lazy loading of info extractors
2016-04-08setup.py: add command for building the lazy_extractors moduleJaime Marquínez Ferrándiz
2016-04-08lazy extractors: Initialize the real info extractorJaime Marquínez Ferrándiz
According to the docs '__init__' is only called automatically if '__new__' returns an instance of the original class.
2016-04-08lazy extractors: Output if it's enabled in the verbose logJaime Marquínez Ferrándiz
2016-04-08lazy extractors: Style fixesJaime Marquínez Ferrándiz
* Sort extractors alphabetically * Add newlines when needed (youtube_dl/extractors/lazy_extractors.py pass the flake8 test now)
2016-04-08lazy extractors: Fix building with python2.6Jaime Marquínez Ferrándiz
2016-04-08lazy extractors: specify the encodingJaime Marquínez Ferrándiz
When building with python3 the unicode characters are not escaped, python2 needs to know the encoding.
2016-04-08Add experimental support for lazy loading the info extractorsJaime Marquínez Ferrándiz
'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.
2016-04-08Move the extreactors import to youtube_dl/extractor/extractors.pyJaime Marquínez Ferrándiz