]> jfr.im git - yt-dlp.git/blob - youtube_dlc/extractor/spike.py
Update to ytdl-2021.01.16
[yt-dlp.git] / youtube_dlc / extractor / spike.py
1 from __future__ import unicode_literals
2
3 from .mtv import MTVServicesInfoExtractor
4
5
6 class BellatorIE(MTVServicesInfoExtractor):
7 _VALID_URL = r'https?://(?:www\.)?bellator\.com/[^/]+/[\da-z]{6}(?:[/?#&]|$)'
8 _TESTS = [{
9 'url': 'http://www.bellator.com/fight/atwr7k/bellator-158-michael-page-vs-evangelista-cyborg',
10 'info_dict': {
11 'title': 'Michael Page vs. Evangelista Cyborg',
12 'description': 'md5:0d917fc00ffd72dd92814963fc6cbb05',
13 },
14 'playlist_count': 3,
15 }, {
16 'url': 'http://www.bellator.com/video-clips/bw6k7n/bellator-158-foundations-michael-venom-page',
17 'only_matching': True,
18 }]
19
20 _FEED_URL = 'http://www.bellator.com/feeds/mrss/'
21 _GEO_COUNTRIES = ['US']
22
23 def _extract_mgid(self, webpage, url):
24 mgid = None
25
26 if not mgid:
27 mgid = self._extract_triforce_mgid(webpage)
28
29 if not mgid:
30 mgid = self._extract_new_triforce_mgid(webpage, url)
31
32 return mgid
33
34 # TODO Remove - Reason: Outdated Site
35
36
37 class ParamountNetworkIE(MTVServicesInfoExtractor):
38 _VALID_URL = r'https?://(?:www\.)?paramountnetwork\.com/[^/]+/[\da-z]{6}(?:[/?#&]|$)'
39 _TESTS = [{
40 'url': 'http://www.paramountnetwork.com/episodes/j830qm/lip-sync-battle-joel-mchale-vs-jim-rash-season-2-ep-13',
41 'info_dict': {
42 'id': '37ace3a8-1df6-48be-85b8-38df8229e241',
43 'ext': 'mp4',
44 'title': 'Lip Sync Battle|April 28, 2016|2|209|Joel McHale Vs. Jim Rash|Act 1',
45 'description': 'md5:a739ca8f978a7802f67f8016d27ce114',
46 },
47 'params': {
48 # m3u8 download
49 'skip_download': True,
50 },
51 }]
52
53 _FEED_URL = 'http://feeds.mtvnservices.com/od/feed/intl-mrss-player-feed'
54 _GEO_COUNTRIES = ['US']
55
56 def _get_feed_query(self, uri):
57 return {
58 'arcEp': 'paramountnetwork.com',
59 'mgid': uri,
60 }
61
62 def _extract_mgid(self, webpage, url):
63 root_data = self._parse_json(self._search_regex(
64 r'window\.__DATA__\s*=\s*({.+})',
65 webpage, 'data'), None)
66
67 def find_sub_data(data, data_type):
68 return next(c for c in data['children'] if c.get('type') == data_type)
69
70 c = find_sub_data(find_sub_data(root_data, 'MainContainer'), 'VideoPlayer')
71 return c['props']['media']['video']['config']['uri']