aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klein <github@a98shuttle.de>2020-05-19 23:08:08 +0200
committerGitHub <noreply@github.com>2020-05-20 04:08:08 +0700
commita54c5f83c01cb243a38c0dbc5981f97bd9224c46 (patch)
tree67081e7a259df7dd2905a8f1897bff65229b258e
parentcd13343ad8c5f6e1cbd47ae0ae1eed00d27ff69a (diff)
downloadyoutube-dl-a54c5f83c01cb243a38c0dbc5981f97bd9224c46.tar.xz
[ard] Improve _VALID_URL (closes #25134) (#25198)
-rw-r--r--youtube_dl/extractor/ard.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py
index 2f47e21c3..e23b71466 100644
--- a/youtube_dl/extractor/ard.py
+++ b/youtube_dl/extractor/ard.py
@@ -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',
@@ -264,6 +264,9 @@ class ARDIE(InfoExtractor):
'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,
}]