]> gitweb @ CieloNegro.org - youtube-dl.git/commitdiff
[ard] Improve _VALID_URL (closes #25134) (#25198)
authorMichael Klein <github@a98shuttle.de>
Tue, 19 May 2020 21:08:08 +0000 (23:08 +0200)
committerGitHub <noreply@github.com>
Tue, 19 May 2020 21:08:08 +0000 (04:08 +0700)
youtube_dl/extractor/ard.py

index 2f47e21c324102d73cf277accc0b30ac41ddfab6..e23b71466953d0234c2bf69c2b9a6d7a5a2fa985 100644 (file)
@@ -249,7 +249,7 @@ class ARDMediathekIE(ARDMediathekBaseIE):
 
 
 class ARDIE(InfoExtractor):
-    _VALID_URL = r'(?P<mainurl>https?://(www\.)?daserste\.de/[^?#]+/videos/(?P<display_id>[^/?#]+)-(?P<id>[0-9]+))\.html'
+    _VALID_URL = r'(?P<mainurl>https?://(www\.)?daserste\.de/[^?#]+/videos(?:extern)?/(?P<display_id>[^/?#]+)-(?P<id>[0-9]+))\.html'
     _TESTS = [{
         # available till 14.02.2019
         'url': 'http://www.daserste.de/information/talk/maischberger/videos/das-groko-drama-zerlegen-sich-die-volksparteien-video-102.html',
@@ -263,6 +263,9 @@ class ARDIE(InfoExtractor):
             'upload_date': '20180214',
             'thumbnail': r're:^https?://.*\.jpg$',
         },
+    }, {
+        'url': 'https://www.daserste.de/information/reportage-dokumentation/erlebnis-erde/videosextern/woelfe-und-herdenschutzhunde-ungleiche-brueder-102.html',
+        'only_matching': True,
     }, {
         'url': 'http://www.daserste.de/information/reportage-dokumentation/dokus/videos/die-story-im-ersten-mission-unter-falscher-flagge-100.html',
         'only_matching': True,