diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-03-30 07:42:35 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-03-30 07:42:35 +0200 |
commit | 9a7b072e38ac6aafc346692a268e7a399a07c607 (patch) | |
tree | 8e73d3692d0fbbc2959aa56c16a9f7369d8b21f7 | |
parent | cbc4a6cc7e8de8d7103afcad1173a5e8910ad35a (diff) |
[wdr] Add support for more wdrmaus subpages
-rw-r--r-- | youtube_dl/extractor/wdr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/wdr.py b/youtube_dl/extractor/wdr.py index 2048744e1..63691aa67 100644 --- a/youtube_dl/extractor/wdr.py +++ b/youtube_dl/extractor/wdr.py @@ -116,7 +116,7 @@ class WDRIE(InfoExtractor): class WDRMausIE(InfoExtractor): - _VALID_URL = 'http://(?:www\.)?wdrmaus\.de/(?:extras/|sachgeschichten/sachgeschichten/)?(?P<id>[^/?#]+)(?:/index\.php5|\.php5|/(?:$|[?#]))' + _VALID_URL = 'http://(?:www\.)?wdrmaus\.de/(?:[^/]+/){,2}(?P<id>[^/?#]+)(?:/index\.php5|(?<!index)\.php5|/(?:$|[?#]))' IE_DESC = 'Sendung mit der Maus' _TESTS = [{ 'url': 'http://www.wdrmaus.de/aktuelle-sendung/index.php5', |