From: Yen Chi Hsuan Date: Fri, 11 Dec 2015 09:32:29 +0000 (+0800) Subject: [vevo] Use _match_id X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=4b942883019968c556a6c6b989b346cecc474ac2;p=youtube-dl [vevo] Use _match_id --- diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py index 61813301a..1d834970c 100644 --- a/youtube_dl/extractor/vevo.py +++ b/youtube_dl/extractor/vevo.py @@ -169,8 +169,7 @@ class VevoIE(InfoExtractor): preference=0) def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') + video_id = self._match_id(url) json_url = 'http://videoplayer.vevo.com/VideoService/AuthenticateVideo?isrc=%s' % video_id response = self._download_json(json_url, video_id)