projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d543bdc
)
[spike] Modernize
author
Sergey M․
<dstftw@gmail.com>
Fri, 30 Jan 2015 15:54:14 +0000
(21:54 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Fri, 30 Jan 2015 15:54:14 +0000
(21:54 +0600)
youtube_dl/extractor/spike.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/spike.py
b/youtube_dl/extractor/spike.py
index a3adf54e3097a5f91a5617c24f286cae5e374e24..abba66aee1e21ca2475e551b35a30e8ca420ab2b 100644
(file)
--- 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)