youtube-dl

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

commit dee3f73787226e3faaf409f8c355b5f8d5dc5632
parent d543bdc351c073621e2f8647fad0f9c8da1cf5b6
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 30 Jan 2015 21:54:14 +0600

[spike] Modernize

Diffstat:
Myoutube_dl/extractor/spike.py | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/spike.py b/youtube_dl/extractor/spike.py @@ -25,8 +25,7 @@ class SpikeIE(MTVServicesInfoExtractor): _MOBILE_TEMPLATE = 'http://m.spike.com/videos/video.rbml?id=%s' def _real_extract(self, url): - mobj = re.search(self._VALID_URL, url) - mobile_id = mobj.group('mobile_id') - if mobile_id is not None: + mobile_id = self._match_id(url) + if mobile_id: url = 'http://www.spike.com/video-clips/%s' % mobile_id return super(SpikeIE, self)._real_extract(url)