Browse Source

[viki] Modernize

Philipp Hagemeister 10 years ago
parent
commit
8ee341500d
1 changed files with 1 additions and 3 deletions
  1. 1 3
      youtube_dl/extractor/viki.py

+ 1 - 3
youtube_dl/extractor/viki.py

@@ -17,7 +17,6 @@ class VikiIE(SubtitlesInfoExtractor):
     _VALID_URL = r'^https?://(?:www\.)?viki\.com/videos/(?P<id>[0-9]+v)'
     _VALID_URL = r'^https?://(?:www\.)?viki\.com/videos/(?P<id>[0-9]+v)'
     _TEST = {
     _TEST = {
         'url': 'http://www.viki.com/videos/1023585v-heirs-episode-14',
         'url': 'http://www.viki.com/videos/1023585v-heirs-episode-14',
-        'md5': 'a21454021c2646f5433514177e2caa5f',
         'info_dict': {
         'info_dict': {
             'id': '1023585v',
             'id': '1023585v',
             'ext': 'mp4',
             'ext': 'mp4',
@@ -31,8 +30,7 @@ class VikiIE(SubtitlesInfoExtractor):
     }
     }
 
 
     def _real_extract(self, url):
     def _real_extract(self, url):
-        mobj = re.match(self._VALID_URL, url)
-        video_id = mobj.group(1)
+        video_id = self._match_id(url)
 
 
         webpage = self._download_webpage(url, video_id)
         webpage = self._download_webpage(url, video_id)
         title = self._og_search_title(webpage)
         title = self._og_search_title(webpage)