]> gitweb @ CieloNegro.org - youtube-dl.git/commitdiff
[rtlnl] Extend _VALID_URL for new embed URL schema
authorSergey M․ <dstftw@gmail.com>
Sun, 13 Sep 2020 14:42:06 +0000 (21:42 +0700)
committerSergey M․ <dstftw@gmail.com>
Sun, 13 Sep 2020 14:42:06 +0000 (21:42 +0700)
youtube_dl/extractor/rtlnl.py

index cf4dc85db2336c6672f981f4212d46f5cfe7af62..9eaa06f25dce87bf67e9533e41b0a3e478cf45eb 100644 (file)
@@ -15,7 +15,8 @@ class RtlNlIE(InfoExtractor):
         https?://(?:(?:www|static)\.)?
         (?:
             rtlxl\.nl/(?:[^\#]*\#!|programma)/[^/]+/|
-            rtl\.nl/(?:(?:system/videoplayer/(?:[^/]+/)+(?:video_)?embed\.html|embed)\b.+?\buuid=|video/)
+            rtl\.nl/(?:(?:system/videoplayer/(?:[^/]+/)+(?:video_)?embed\.html|embed)\b.+?\buuid=|video/)|
+            embed\.rtl\.nl/\#uuid=
         )
         (?P<id>[0-9a-f-]+)'''
 
@@ -91,6 +92,10 @@ class RtlNlIE(InfoExtractor):
     }, {
         'url': 'https://static.rtl.nl/embed/?uuid=1a2970fc-5c0b-43ff-9fdc-927e39e6d1bc&autoplay=false&publicatiepunt=rtlnieuwsnl',
         'only_matching': True,
+    }, {
+        # new embed URL schema
+        'url': 'https://embed.rtl.nl/#uuid=84ae5571-ac25-4225-ae0c-ef8d9efb2aed/autoplay=false',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):