youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 9609f02e3ca87e56fc5571e41040ddbcf2a79a73
parent c2ebea6580481a89c35f9447898b17241ad71ac0
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu,  5 Mar 2015 22:34:56 +0100

[vidme] Modernize

Diffstat:
Myoutube_dl/extractor/vidme.py | 9+++------
1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/youtube_dl/extractor/vidme.py b/youtube_dl/extractor/vidme.py @@ -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='')