diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-02-17 22:02:01 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-02-17 22:02:01 +0700 |
commit | 4cead6a614b5a293e78dce5cd5eda7476f83985d (patch) | |
tree | de106b9cd45e87b816348841744b6a713e143d4b /youtube_dl | |
parent | a4a554a79354981fcab55de8eaab7b95a40bbb48 (diff) |
[einthusan] Relax _VALID_URL (closes #12141, closes #12159)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/einthusan.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/einthusan.py b/youtube_dl/extractor/einthusan.py index 8a2a17b63..3f6268637 100644 --- a/youtube_dl/extractor/einthusan.py +++ b/youtube_dl/extractor/einthusan.py @@ -18,8 +18,8 @@ from ..utils import ( class EinthusanIE(InfoExtractor): - _VALID_URL = r'https?://einthusan\.tv/movie/watch/(?P<id>[0-9]+)' - _TEST = { + _VALID_URL = r'https?://einthusan\.tv/movie/watch/(?P<id>[^/?#&]+)' + _TESTS = [{ 'url': 'https://einthusan.tv/movie/watch/9097/', 'md5': 'ff0f7f2065031b8a2cf13a933731c035', 'info_dict': { @@ -29,7 +29,10 @@ class EinthusanIE(InfoExtractor): 'description': 'md5:33ef934c82a671a94652a9b4e54d931b', 'thumbnail': r're:^https?://.*\.jpg$', } - } + }, { + 'url': 'https://einthusan.tv/movie/watch/51MZ/?lang=hindi', + 'only_matching': True, + }] # reversed from jsoncrypto.prototype.decrypt() in einthusan-PGMovieWatcher.js def _decrypt(self, encrypted_data, video_id): |