diff options
| -rw-r--r-- | youtube_dl/extractor/tagesschau.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/tagesschau.py b/youtube_dl/extractor/tagesschau.py index ebd81eadc..fcccb230c 100644 --- a/youtube_dl/extractor/tagesschau.py +++ b/youtube_dl/extractor/tagesschau.py @@ -8,7 +8,7 @@ from ..utils import parse_filesize  class TagesschauIE(InfoExtractor): -    _VALID_URL = r'https?://(?:www\.)?tagesschau\.de/multimedia/(?:[^/]+/)*?[^/#?]+?(?P<id>-?[0-9]+)(?:~_[^/#?]+?)?\.html' +    _VALID_URL = r'https?://(?:www\.)?tagesschau\.de/multimedia/(?:[^/]+/)*?[^/#?]+?(?P<id>-?[0-9]+)(?:~_?[^/#?]+?)?\.html'      _TESTS = [{          'url': 'http://www.tagesschau.de/multimedia/video/video-102143.html', @@ -61,6 +61,9 @@ class TagesschauIE(InfoExtractor):      }, {          'url': 'http://www.tagesschau.de/multimedia/video/video-102303~_bab-sendung-211.html',          'only_matching': True, +    }, { +        'url': 'http://www.tagesschau.de/multimedia/video/video-179517~player.html', +        'only_matching': True,      }]      _FORMATS = { | 
