aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-06-26release 2016.06.262016.06.26Sergey M․
2016-06-26[msn] Fix extraction (Closes #8960, closes #9542)Sergey M․
2016-06-26[extractor/common] Fix sorting with custom field preferenceSergey M․
2016-06-26[MSN] add new extractorTRox1972
2016-06-26[vidbit] Improve (Closes #9759)Sergey M․
2016-06-26[utils] Add support for name list in _html_search_metaSergey M․
2016-06-26[Vidbit] Add new extractorTRox1972
2016-06-26[iqiyi] Remove codes for debuggingYen Chi Hsuan
2016-06-26[iqiyi] Partially fix IqiyiIEYen Chi Hsuan
Use the HTML5 API. Only low-resolution formats available Related: #9839 Thanks @zhangn1985 for the overall algorithm (soimort/you-get#1224)
2016-06-26[le] Move urshift() to utils.pyYen Chi Hsuan
2016-06-26[utils] Add urshift()Yen Chi Hsuan
Used in IqiyiIE and LeIE
2016-06-26[generic] Fix test_Generic_76Yen Chi Hsuan
Broken: https://travis-ci.org/rg3/youtube-dl/jobs/140251658
2016-06-26Fix misspellingstepshal
2016-06-26[svtplay] Extend _VALID_URL (#9900)Sergey M․
2016-06-26[iqiyi] Mark brokenSergey M․
2016-06-25Credit @JakubAdamWieczorek for #9813Sergey M․
2016-06-25[polskieradio] Add test with videoSergey M․
2016-06-25[polskieradio] Improve extraction (Closes #9813)Sergey M․
2016-06-25[polskieradio] Add support for Polskie Radio.Jakub Adam Wieczorek
Polskie Radio is the main Polish state-funded radio broadcasting service.
2016-06-25[utils] Add strip_or_noneSergey M․
2016-06-25[utils] Add unified_timestampSergey M․
2016-06-25release 2016.06.252016.06.25Sergey M․
2016-06-25[setup.py] Add file version information and quotes consistency (Closes #9878)Sergey M․
2016-06-24[youtube] Fix and skip some testsSergey M․
2016-06-24[youtube] Relax URL expansion in descriptionSergey M․
2016-06-24[youtube] Fix 141 format testsSergey M․
2016-06-24[mixcloud] View count and like count may be absentYen Chi Hsuan
Closes #9874
2016-06-24[vimeo:review] Fix extraction for password-protected videosYen Chi Hsuan
Closes #9853
2016-06-23[appletrailers] correct thumbnail fallbackRemita Amine
2016-06-23[dcn] extend _VALID_URL for awaan.ae and extract all available formatsRemita Amine
2016-06-23[appletrailers] extract info from an alternative source if available(closes ↵Remita Amine
#8422)(closes #8422)
2016-06-23[tvp] extract all formats and detect errosRemita Amine
2016-06-23release 2016.06.23.12016.06.23.1Sergey M․
2016-06-23[jsinterp] Relax JS function regex (Closes #9863)Sergey M․
2016-06-23[nbc:nbcnews] improve extraction and add msnbc to the extractorRemita Amine
2016-06-23[tf1] fix wat id extraction(closes #9862)Remita Amine
2016-06-23release 2016.06.232016.06.23Sergey M․
2016-06-23[vk] Remove unused importSergey M․
2016-06-23[xnxx] Improve _VALID_URL (Closes #9858)Sergey M․
2016-06-23[xnxx] Replace testSergey M․
2016-06-23[xnxx] fix url regexrr-
The pattern has changed from "video123412" to "video-o8xa19". The changes maintain backwards compatibility with old-style URLs.
2016-06-23[vk] ModernizeSergey M․
2016-06-23[vk] Workaround buggy new.vk.com Set-Cookie headersSergey M․
2016-06-23[vimeo:album] Add paged example URLSergey M․
2016-06-23[vimeo:album] Impove _VALID_URLSergey M․
2016-06-23[vimeo:channel] Improve playlist extractionSergey M․
2016-06-23[vimeo:channel] Add video id to url_resultPurdea Andrei
This will allow us to decide much faster that we don't want an already archived video, and will allow having to download webpages for each video that has already been downloaded, thus significantly speeding up the archival of channels that have no new content.
2016-06-23[vimeo] Override original URL only when necessarySergey M․
2016-06-22lazy-extractors: Fix after commit 6e6b9f600f2f447604f6108fb6486b73cc25def1Jaime Marquínez Ferrándiz
The problem was in the following code: class ArteTVPlus7IE(ArteTVBaseIE): ... @classmethod def suitable(cls, url): return False if ArteTVPlaylistIE.suitable(url) else super(ArteTVPlus7IE, cls).suitable(url) And its sublcasses like ArteTVCinemaIE. Since in the lazy_extractors.py file ArteTVCinemaIE was not a subclass of ArteTVPlus7IE, super(ArteTVPlus7IE, cls) failed. To fix it we have to make it a subclass. Since the order of _ALL_CLASSES is arbitrary we must sort them so that the base classes are defined first. We also must add base classes like YoutubeBaseInfoExtractor.
2016-06-22[Vine] Extract view countTRox1972