[vidme] Modernize
authorPhilipp Hagemeister <phihag@phihag.de>
Thu, 5 Mar 2015 21:34:56 +0000 (22:34 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Thu, 5 Mar 2015 21:34:56 +0000 (22:34 +0100)
youtube_dl/extractor/vidme.py

index 5c89824c164272358923e245e60a4f86466287c4..339c3d897b4e967a4000c33da1a9c027f4d12633 100644 (file)
@@ -1,7 +1,5 @@
 from __future__ import unicode_literals
 
-import re
-
 from .common import InfoExtractor
 from ..utils import (
     int_or_none,
@@ -28,12 +26,11 @@ class VidmeIE(InfoExtractor):
     }
 
     def _real_extract(self, url):
-        mobj = re.match(self._VALID_URL, url)
-        video_id = mobj.group('id')
-
+        video_id = self._match_id(url)
         webpage = self._download_webpage(url, video_id)
 
-        video_url = self._html_search_regex(r'<source src="([^"]+)"', webpage, 'video URL')
+        video_url = self._html_search_regex(
+            r'<source src="([^"]+)"', webpage, 'video URL')
 
         title = self._og_search_title(webpage)
         description = self._og_search_description(webpage, default='')