]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/spike.py
21b93a5b3c7e4d2289ce3261f6c737b0f737001e
[youtubedl] / youtube_dl / 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 'id': 'b55e434e-fde1-4a98-b7cc-92003a034de4',
12 'ext': 'mp4',
13 'title': 'Douglas Lima vs. Paul Daley - Round 1',
14 'description': 'md5:805a8dd29310fd611d32baba2f767885',
15 },
16 'params': {
17 # m3u8 download
18 'skip_download': True,
19 },
20 }, {
21 'url': 'http://www.bellator.com/video-clips/bw6k7n/bellator-158-foundations-michael-venom-page',
22 'only_matching': True,
23 }]
24
25 _FEED_URL = 'http://www.spike.com/feeds/mrss/'
26 _GEO_COUNTRIES = ['US']
27
28
29 class ParamountNetworkIE(MTVServicesInfoExtractor):
30 _VALID_URL = r'https?://(?:www\.)?paramountnetwork\.com/[^/]+/[\da-z]{6}(?:[/?#&]|$)'
31 _TESTS = [{
32 'url': 'http://www.paramountnetwork.com/episodes/j830qm/lip-sync-battle-joel-mchale-vs-jim-rash-season-2-ep-13',
33 'info_dict': {
34 'id': '37ace3a8-1df6-48be-85b8-38df8229e241',
35 'ext': 'mp4',
36 'title': 'Lip Sync Battle|April 28, 2016|2|209|Joel McHale Vs. Jim Rash|Act 1',
37 'description': 'md5:a739ca8f978a7802f67f8016d27ce114',
38 },
39 'params': {
40 # m3u8 download
41 'skip_download': True,
42 },
43 }]
44
45 _FEED_URL = 'http://www.paramountnetwork.com/feeds/mrss/'
46 _GEO_COUNTRIES = ['US']
47
48 def _extract_mgid(self, webpage):
49 root_data = self._parse_json(self._search_regex(
50 r'window\.__DATA__\s*=\s*({.+})',
51 webpage, 'data'), None)
52
53 def find_sub_data(data, data_type):
54 return next(c for c in data['children'] if c.get('type') == data_type)
55
56 c = find_sub_data(find_sub_data(root_data, 'MainContainer'), 'VideoPlayer')
57 return c['props']['media']['video']['config']['uri']