- _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:
- url = 'http://www.spike.com/video-clips/%s' % mobile_id
- return super(SpikeIE, self)._real_extract(url)
+ _GEO_COUNTRIES = ['US']
+
+
+class ParamountNetworkIE(MTVServicesInfoExtractor):
+ _VALID_URL = r'https?://(?:www\.)?paramountnetwork\.com/[^/]+/[\da-z]{6}(?:[/?#&]|$)'
+ _TESTS = [{
+ 'url': 'http://www.paramountnetwork.com/episodes/j830qm/lip-sync-battle-joel-mchale-vs-jim-rash-season-2-ep-13',
+ 'info_dict': {
+ 'id': '37ace3a8-1df6-48be-85b8-38df8229e241',
+ 'ext': 'mp4',
+ 'title': 'Lip Sync Battle|April 28, 2016|2|209|Joel McHale Vs. Jim Rash|Act 1',
+ 'description': 'md5:a739ca8f978a7802f67f8016d27ce114',
+ },
+ 'params': {
+ # m3u8 download
+ 'skip_download': True,
+ },
+ }]
+
+ _FEED_URL = 'http://www.paramountnetwork.com/feeds/mrss/'
+ _GEO_COUNTRIES = ['US']
+
+ def _extract_mgid(self, webpage):
+ cs = self._parse_json(self._search_regex(
+ r'window\.__DATA__\s*=\s*({.+})',
+ webpage, 'data'), None)['children']
+ c = next(c for c in cs if c.get('type') == 'VideoPlayer')
+ return c['props']['media']['video']['config']['uri']