1 from .common
import InfoExtractor
11 class NHLBaseIE(InfoExtractor
):
12 def _real_extract(self
, url
):
13 site
, tmp_id
= self
._match
_valid
_url
(url
).groups()
14 video_data
= self
._download
_json
(
15 'https://{}/{}/{}id/v1/{}/details/web-v1.json'.format(
16 self
._CONTENT
_DOMAIN
, site
[:3], 'item/' if site
== 'mlb' else '', tmp_id
), tmp_id
)
17 if video_data
.get('type') != 'video':
18 video_data
= video_data
['media']
19 video
= video_data
.get('video')
23 videos
= video_data
.get('videos')
25 video_data
= videos
[0]
27 video_id
= str(video_data
['id'])
28 title
= video_data
['title']
31 for playback
in video_data
.get('playbacks', []):
32 playback_url
= playback
.get('url')
35 ext
= determine_ext(playback_url
)
37 m3u8_formats
= self
._extract
_m
3u8_formats
(
38 playback_url
, video_id
, 'mp4', 'm3u8_native',
39 m3u8_id
=playback
.get('name', 'hls'), fatal
=False)
40 self
._check
_formats
(m3u8_formats
, video_id
)
41 formats
.extend(m3u8_formats
)
43 height
= int_or_none(playback
.get('height'))
45 'format_id': playback
.get('name') or join_nonempty('http', height
and f
'{height}p'),
47 'width': int_or_none(playback
.get('width')),
49 'tbr': int_or_none(self
._search
_regex
(r
'_(\d+)[kK]', playback_url
, 'bitrate', default
=None)),
53 cuts
= video_data
.get('image', {}).get('cuts') or []
54 if isinstance(cuts
, dict):
56 for thumbnail_data
in cuts
:
57 thumbnail_url
= thumbnail_data
.get('src')
62 'width': int_or_none(thumbnail_data
.get('width')),
63 'height': int_or_none(thumbnail_data
.get('height')),
69 'description': video_data
.get('description'),
70 'timestamp': parse_iso8601(video_data
.get('date')),
71 'duration': parse_duration(video_data
.get('duration')),
72 'thumbnails': thumbnails
,
77 class NHLIE(NHLBaseIE
):
79 _VALID_URL
= r
'https?://(?:www\.)?(?P<site>nhl|wch2016)\.com/(?:[^/]+/)*c-(?P<id>\d+)'
80 _CONTENT_DOMAIN
= 'nhl.bamcontent.com'
83 'url': 'https://www.nhl.com/video/anisimov-cleans-up-mess/t-277752844/c-43663503',
84 'md5': '0f7b9a8f986fb4b4eeeece9a56416eaf',
88 'title': 'Anisimov cleans up mess',
89 'description': 'md5:a02354acdfe900e940ce40706939ca63',
90 'timestamp': 1461288600,
91 'upload_date': '20160422',
95 'url': 'https://www.nhl.com/news/dennis-wideman-suspended/c-278258934',
96 'md5': '1f39f4ea74c1394dea110699a25b366c',
100 'title': 'Wideman suspended by NHL',
101 'description': 'Flames defenseman Dennis Wideman was banned 20 games for violation of Rule 40 (Physical Abuse of Officials)',
102 'upload_date': '20160204',
103 'timestamp': 1454544904,
106 # Some m3u8 URLs are invalid (https://github.com/ytdl-org/youtube-dl/issues/10713)
107 'url': 'https://www.nhl.com/predators/video/poile-laviolette-on-subban-trade/t-277437416/c-44315003',
108 'md5': '50b2bb47f405121484dda3ccbea25459',
112 'title': 'Poile, Laviolette on Subban trade',
113 'description': 'General manager David Poile and head coach Peter Laviolette share their thoughts on acquiring P.K. Subban from Montreal (06/29/16)',
114 'timestamp': 1467242866,
115 'upload_date': '20160629',
118 'url': 'https://www.wch2016.com/video/caneur-best-of-game-2-micd-up/t-281230378/c-44983703',
119 'only_matching': True,
121 'url': 'https://www.wch2016.com/news/3-stars-team-europe-vs-team-canada/c-282195068',
122 'only_matching': True,