From 7458f669cf51c1f36f58cdb7b5f0cf1f39c824f2 Mon Sep 17 00:00:00 2001 From: carsten demming Date: Wed, 21 Feb 2018 00:39:48 +0100 Subject: [PATCH] - Updated the ARD Extractor with a new case as well valid until 2019 --- youtube_dl/extractor/ard.py | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py index c48a472ee..8d3dd78a3 100644 --- a/youtube_dl/extractor/ard.py +++ b/youtube_dl/extractor/ard.py @@ -266,7 +266,20 @@ class ARDMediathekIE(InfoExtractor): class ARDIE(InfoExtractor): _VALID_URL = r'(?Phttps?://(www\.)?daserste\.de/[^?#]+/videos/(?P[^/?#]+)-(?P[0-9]+))\.html' - _TEST = { + _TESTS = [{ + 'url': 'http://www.daserste.de/information/talk/maischberger/videos/das-groko-drama-zerlegen-sich-die-volksparteien-video-102.html', + 'md5': '8e4ec85f31be7c7fc08a26cdbc5a1f49', + 'info_dict': { + 'display_id': 'das-groko-drama-zerlegen-sich-die-volksparteien-video', + 'id': '102', + 'ext': 'mp4', + 'duration': 4435.0, + 'title': 'Das GroKo-Drama: Zerlegen sich die Volksparteien?', + 'upload_date': '20180214', + 'thumbnail': r're:^https?://.*\.jpg$', + }, + }, + { 'url': 'http://www.daserste.de/information/reportage-dokumentation/dokus/videos/die-story-im-ersten-mission-unter-falscher-flagge-100.html', 'md5': 'd216c3a86493f9322545e045ddc3eb35', 'info_dict': { @@ -279,7 +292,7 @@ class ARDIE(InfoExtractor): 'thumbnail': r're:^https?://.*\.jpg$', }, 'skip': 'HTTP Error 404: Not Found', - } + }] def _real_extract(self, url): mobj = re.match(self._VALID_URL, url)