]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/spike.py
   1 from __future__ 
import unicode_literals
 
   3 from .mtv 
import MTVServicesInfoExtractor
 
   6 class SpikeIE(MTVServicesInfoExtractor
): 
   7     _VALID_URL 
= r
'''(?x)https?:// 
   8         (?:www\.spike\.com/(?:video-clips|(?:full-)?episodes)/.+| 
   9          m\.spike\.com/videos/video\.rbml\?id=(?P<id>[^&]+)) 
  12         'url': 'http://www.spike.com/video-clips/lhtu8m/auction-hunters-can-allen-ride-a-hundred-year-old-motorcycle', 
  13         'md5': '1a9265f32b0c375793d6c4ce45255256', 
  15             'id': 'b9c8221a-4e50-479a-b86d-3333323e38ba', 
  17             'title': 'Auction Hunters|Can Allen Ride A Hundred Year-Old Motorcycle?', 
  18             'description': 'md5:fbed7e82ed5fad493615b3094a9499cb', 
  22     _FEED_URL 
= 'http://www.spike.com/feeds/mrss/' 
  23     _MOBILE_TEMPLATE 
= 'http://m.spike.com/videos/video.rbml?id=%s' 
  25     def _real_extract(self
, url
): 
  26         mobile_id 
= self
._match
_id
(url
) 
  28             url 
= 'http://www.spike.com/video-clips/%s' % mobile_id
 
  29         return super(SpikeIE
, self
)._real
_extract
(url
)