Browse Source

[servus] Add support for pm-wissen.com (closes #25869)

Sergey M․ 4 years ago
parent
commit
f4093b34f6
1 changed files with 4 additions and 1 deletions
  1. 4 1
      youtube_dl/extractor/servus.py

+ 4 - 1
youtube_dl/extractor/servus.py

@@ -18,7 +18,7 @@ class ServusIE(InfoExtractor):
                         (?:www\.)?
                         (?:www\.)?
                         (?:
                         (?:
                             servus\.com/(?:(?:at|de)/p/[^/]+|tv/videos)|
                             servus\.com/(?:(?:at|de)/p/[^/]+|tv/videos)|
-                            servustv\.com/videos
+                            (?:servustv|pm-wissen)\.com/videos
                         )
                         )
                         /(?P<id>[aA]{2}-\w+|\d+-\d+)
                         /(?P<id>[aA]{2}-\w+|\d+-\d+)
                     '''
                     '''
@@ -55,6 +55,9 @@ class ServusIE(InfoExtractor):
     }, {
     }, {
         'url': 'https://www.servus.com/tv/videos/1380889096408-1235196658/',
         'url': 'https://www.servus.com/tv/videos/1380889096408-1235196658/',
         'only_matching': True,
         'only_matching': True,
+    }, {
+        'url': 'https://www.pm-wissen.com/videos/aa-24mus4g2w2112/',
+        'only_matching': True,
     }]
     }]
 
 
     def _real_extract(self, url):
     def _real_extract(self, url):