aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/servus.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/servus.py')
-rw-r--r--youtube_dl/extractor/servus.py17
1 files changed, 2 insertions, 15 deletions
diff --git a/youtube_dl/extractor/servus.py b/youtube_dl/extractor/servus.py
index 9401bf2cf..e579d42cf 100644
--- a/youtube_dl/extractor/servus.py
+++ b/youtube_dl/extractor/servus.py
@@ -7,18 +7,9 @@ from .common import InfoExtractor
class ServusIE(InfoExtractor):
- _VALID_URL = r'''(?x)
- https?://
- (?:www\.)?
- (?:
- servus\.com/(?:(?:at|de)/p/[^/]+|tv/videos)|
- servustv\.com/videos
- )
- /(?P<id>[aA]{2}-\w+|\d+-\d+)
- '''
+ _VALID_URL = r'https?://(?:www\.)?servus\.com/(?:(?:at|de)/p/[^/]+|tv/videos)/(?P<id>[aA]{2}-\w+|\d+-\d+)'
_TESTS = [{
- # new URL schema
- 'url': 'https://www.servustv.com/videos/aa-1t6vbu5pw1w12/',
+ 'url': 'https://www.servus.com/de/p/Die-Gr%C3%BCnen-aus-Sicht-des-Volkes/AA-1T6VBU5PW1W12/',
'md5': '3e1dd16775aa8d5cbef23628cfffc1f4',
'info_dict': {
'id': 'AA-1T6VBU5PW1W12',
@@ -28,10 +19,6 @@ class ServusIE(InfoExtractor):
'thumbnail': r're:^https?://.*\.jpg',
}
}, {
- # old URL schema
- 'url': 'https://www.servus.com/de/p/Die-Gr%C3%BCnen-aus-Sicht-des-Volkes/AA-1T6VBU5PW1W12/',
- 'only_matching': True,
- }, {
'url': 'https://www.servus.com/at/p/Wie-das-Leben-beginnt/1309984137314-381415152/',
'only_matching': True,
}, {