diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-07-17 03:40:58 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-07-17 03:40:58 +0700 |
commit | af21f56f980e22086ac734cf266141c7a9ff21ce (patch) | |
tree | 13d08faf4da7492c35d2e54e0b08ea92efcb1608 /youtube_dl | |
parent | 1a8f0773b6b2550c2763f4522481df7695ad4b6f (diff) |
[ard] Add support for rbb-online (Closes #10095)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/ard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py index 13a06396d..91c78887a 100644 --- a/youtube_dl/extractor/ard.py +++ b/youtube_dl/extractor/ard.py @@ -20,7 +20,7 @@ from ..compat import compat_etree_fromstring class ARDMediathekIE(InfoExtractor): IE_NAME = 'ARD:mediathek' - _VALID_URL = r'^https?://(?:(?:www\.)?ardmediathek\.de|mediathek\.daserste\.de)/(?:.*/)(?P<video_id>[0-9]+|[^0-9][^/\?]+)[^/\?]*(?:\?.*)?' + _VALID_URL = r'^https?://(?:(?:www\.)?ardmediathek\.de|mediathek\.(?:daserste|rbb-online)\.de)/(?:.*/)(?P<video_id>[0-9]+|[^0-9][^/\?]+)[^/\?]*(?:\?.*)?' _TESTS = [{ 'url': 'http://www.ardmediathek.de/tv/Dokumentation-und-Reportage/Ich-liebe-das-Leben-trotzdem/rbb-Fernsehen/Video?documentId=29582122&bcastId=3822114', |