diff options
| author | Sergey M․ <dstftw@gmail.com> | 2019-02-15 23:56:29 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2019-02-15 23:56:29 +0700 | 
| commit | 2b2da3ba10cc325d00b665aae87f0fa8508bccdf (patch) | |
| tree | 56ac76e47d25073427b3846572a3ea207d68ac14 /youtube_dl/extractor | |
| parent | 794c1b6e02591b04da931fa59745bc47bfae7492 (diff) | |
[rai] Relax _VALID_URL (closes #19232)
Diffstat (limited to 'youtube_dl/extractor')
| -rw-r--r-- | youtube_dl/extractor/rai.py | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rai.py b/youtube_dl/extractor/rai.py index 548a6553b..149153b8f 100644 --- a/youtube_dl/extractor/rai.py +++ b/youtube_dl/extractor/rai.py @@ -288,7 +288,7 @@ class RaiPlayPlaylistIE(InfoExtractor):  class RaiIE(RaiBaseIE): -    _VALID_URL = r'https?://[^/]+\.(?:rai\.(?:it|tv)|rainews\.it)/dl/.+?-(?P<id>%s)(?:-.+?)?\.html' % RaiBaseIE._UUID_RE +    _VALID_URL = r'https?://[^/]+\.(?:rai\.(?:it|tv)|rainews\.it)/.+?-(?P<id>%s)(?:-.+?)?\.html' % RaiBaseIE._UUID_RE      _TESTS = [{          # var uniquename = "ContentItem-..."          # data-id="ContentItem-..." @@ -375,6 +375,9 @@ class RaiIE(RaiBaseIE):          # Direct MMS URL          'url': 'http://www.rai.it/dl/RaiTV/programmi/media/ContentItem-b63a4089-ac28-48cf-bca5-9f5b5bc46df5.html',          'only_matching': True, +    }, { +        'url': 'https://www.rainews.it/tgr/marche/notiziari/video/2019/02/ContentItem-6ba945a2-889c-4a80-bdeb-8489c70a8db9.html', +        'only_matching': True,      }]      def _extract_from_content_id(self, content_id, url):  | 
