Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-06-24 | [vimeo:review] Fix extraction for password-protected videos | Yen Chi Hsuan | |
Closes #9853 | |||
2016-06-23 | [appletrailers] correct thumbnail fallback | Remita Amine | |
2016-06-23 | [dcn] extend _VALID_URL for awaan.ae and extract all available formats | Remita 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 erros | Remita Amine | |
2016-06-23 | release 2016.06.23.12016.06.23.1 | Sergey 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 extractor | Remita Amine | |
2016-06-23 | [tf1] fix wat id extraction(closes #9862) | Remita Amine | |
2016-06-23 | release 2016.06.232016.06.23 | Sergey M․ | |
2016-06-23 | [vk] Remove unused import | Sergey M․ | |
2016-06-23 | [xnxx] Improve _VALID_URL (Closes #9858) | Sergey M․ | |
2016-06-23 | [xnxx] Replace test | Sergey M․ | |
2016-06-23 | [xnxx] fix url regex | rr- | |
The pattern has changed from "video123412" to "video-o8xa19". The changes maintain backwards compatibility with old-style URLs. | |||
2016-06-23 | [vk] Modernize | Sergey M․ | |
2016-06-23 | [vk] Workaround buggy new.vk.com Set-Cookie headers | Sergey M․ | |
2016-06-23 | [vimeo:album] Add paged example URL | Sergey M․ | |
2016-06-23 | [vimeo:album] Impove _VALID_URL | Sergey M․ | |
2016-06-23 | [vimeo:channel] Improve playlist extraction | Sergey M․ | |
2016-06-23 | [vimeo:channel] Add video id to url_result | Purdea 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 necessary | Sergey M․ | |
2016-06-22 | lazy-extractors: Fix after commit 6e6b9f600f2f447604f6108fb6486b73cc25def1 | Jaime 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 count | TRox1972 | |
2016-06-22 | release 2016.06.222016.06.22 | Sergey M․ | |
2016-06-22 | [svt] Various improvements | Sergey M․ | |
+ [svt:play] Add fallback path looking for video id and fix extraction for oppetarkiv * [svt:base] Detect geo restriction * [svt:base] Extract series related metadata | |||
2016-06-22 | Fix issue downloading facebook videos | Shai Coleman | |
youtube-dl expects the format items to be returned as a list, but when there's only one item Facebook returns a dict instead, this wraps the dict in a list if necessary | |||
2016-06-21 | [gametrailers] Remove extractor | Sergey M․ | |
gametrailers closed (see http://www.polygon.com/2016/2/8/10944452/gametrailers-shuts-down-after-13-year-run) | |||
2016-06-21 | [gamespot] extract all formats | Remita Amine | |
2016-06-21 | [svt] Fix extraction for SVTPlay (closes #9809) | Yen Chi Hsuan | |
2016-06-20 | [cbs] Remove unused import | Sergey M․ | |
2016-06-20 | [streamcloud] Capture error message (#9840) | Sergey M․ | |
2016-06-20 | release 2016.06.202016.06.20 | Sergey M․ | |
2016-06-20 | [downloader/hls] Simplify and carry long lines | Sergey M․ | |
2016-06-20 | Revert "[jsinterp] Avoid double key lookup for setting new key" | Philipp Hagemeister | |
This reverts commit 7c05097633138459e9bdf7e10738e021b04689a7. | |||
2016-06-19 | [cbs] fix _VALID_URL | Remita Amine | |
2016-06-19 | [cbs,cbsnews,cbssports] reduce requests while extracting all formats | Remita Amine | |
2016-06-19 | [theplatform] reduce requests for theplatform feed info extraction | Remita Amine | |
2016-06-19 | [radiojavan] PEP8 | Yen Chi Hsuan | |
E275 is added in pycodestyle 2.6 See https://github.com/PyCQA/pycodestyle/pull/491 | |||
2016-06-19 | Merge pull request #8201 from remitamine/hls-aes | Yen Chi Hsuan | |
[downloader/hls] Add support for AES-128 encrypted segments in hlsnative downloader | |||
2016-06-19 | [foxsports] extract http formats | Remita Amine | |
2016-06-19 | [downloader/hls] Add support for AES-128 encrypted segments in hlsnative ↵ | remitamine | |
downloader | |||
2016-06-19 | release 2016.06.19.12016.06.19.1 | Sergey M․ | |
2016-06-19 | [vimeo] Fix rented videos (Closes #9830) | Sergey M․ | |
2016-06-19 | [jsinterp] Avoid double key lookup for setting new key | Lucas Moura | |
In order to add a new key to both __objects and __functions dicts on jsinterp.py, it is necessary to first verify if a key was present and if not, create the key and assign it to a value. However, this can be done with a single step using dict setdefault method. | |||
2016-06-19 | release 2016.06.192016.06.19 | Sergey M․ | |
2016-06-19 | [r7] Fix extraction and add support for articles (Closes #9826) | Sergey M․ | |
2016-06-19 | [closertotruth] Update and improve (Closes #8680) | Sergey M․ | |
2016-06-18 | [closertotruth] Add extractor | Steven Gosseling | |
Removed print statement from code. Replaced two regex searches with the corret ones. Removed some unnecessary semicolumns fixed title extraction refactored everything to search_regex processed comments on commit 5650b0d, fixed feedback from flake8 Improved regexes and returns info dict now. Added support for closertotruth interview URL Added support for episodes page | |||
2016-06-18 | [arte:+7] Simplify _VALID_URL | Sergey M․ | |
2016-06-18 | [README.md] Remove 'small' from description (#9814) | Sergey M․ | |