diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-03-22 22:26:59 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-03-22 22:26:59 +0700 |
commit | c183e14f89078593ab47f06e5076f00bee3c9dd9 (patch) | |
tree | ab9d56e7dcdd3e28a5faedc02bf154917326c4ab | |
parent | 093dad9e256e3237dfad3c57a19ae10ddadcbf9b (diff) |
[viu] Relax _VALID_URL (closes #12529)
-rw-r--r-- | youtube_dl/extractor/viu.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/viu.py b/youtube_dl/extractor/viu.py index 3fd889c8e..db6a65d2e 100644 --- a/youtube_dl/extractor/viu.py +++ b/youtube_dl/extractor/viu.py @@ -44,7 +44,7 @@ class ViuBaseIE(InfoExtractor): class ViuIE(ViuBaseIE): - _VALID_URL = r'(?:viu:|https?://www\.viu\.com/[a-z]{2}/media/)(?P<id>\d+)' + _VALID_URL = r'(?:viu:|https?://[^/]+\.viu\.com/[a-z]{2}/media/)(?P<id>\d+)' _TESTS = [{ 'url': 'https://www.viu.com/en/media/1116705532?containerId=playlist-22168059', 'info_dict': { @@ -69,6 +69,9 @@ class ViuIE(ViuBaseIE): 'skip_download': 'm3u8 download', }, 'skip': 'Geo-restricted to Indonesia', + }, { + 'url': 'https://india.viu.com/en/media/1126286865', + 'only_matching': True, }] def _real_extract(self, url): |