]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/redbulltv.py
[misc] Add `hatch`, `ruff`, `pre-commit` and improve dev docs (#7409)
[yt-dlp.git] / yt_dlp / extractor / redbulltv.py
CommitLineData
054a587d 1from .common import InfoExtractor
3d2623a8 2from ..networking.exceptions import HTTPError
054a587d 3from ..utils import (
ba448445 4 ExtractorError,
e897bd82 5 float_or_none,
054a587d
S
6)
7
8
9class RedBullTVIE(InfoExtractor):
1f767545 10 _VALID_URL = r'https?://(?:www\.)?redbull(?:\.tv|\.com(?:/[^/]+)?(?:/tv)?)(?:/events/[^/]+)?/(?:videos?|live|(?:film|episode)s)/(?P<id>AP-\w+)'
054a587d
S
11 _TESTS = [{
12 # film
e2e18694 13 'url': 'https://www.redbull.tv/video/AP-1Q6XCDTAN1W11',
ba448445 14 'md5': 'fb0445b98aa4394e504b413d98031d1f',
054a587d 15 'info_dict': {
e2e18694 16 'id': 'AP-1Q6XCDTAN1W11',
054a587d 17 'ext': 'mp4',
e2e18694 18 'title': 'ABC of... WRC - ABC of... S1E6',
054a587d
S
19 'description': 'md5:5c7ed8f4015c8492ecf64b6ab31e7d31',
20 'duration': 1582.04,
054a587d
S
21 },
22 }, {
23 # episode
e2e18694 24 'url': 'https://www.redbull.tv/video/AP-1PMHKJFCW1W11',
054a587d 25 'info_dict': {
e2e18694 26 'id': 'AP-1PMHKJFCW1W11',
054a587d 27 'ext': 'mp4',
e2e18694 28 'title': 'Grime - Hashtags S2E4',
1f767545
RA
29 'description': 'md5:5546aa612958c08a98faaad4abce484d',
30 'duration': 904,
054a587d 31 },
27449ad8
S
32 'params': {
33 'skip_download': True,
34 },
4779420c
RA
35 }, {
36 'url': 'https://www.redbull.com/int-en/tv/video/AP-1UWHCAR9S1W11/rob-meets-sam-gaze?playlist=playlists::3f81040a-2f31-4832-8e2e-545b1d39d173',
37 'only_matching': True,
274519dd
S
38 }, {
39 'url': 'https://www.redbull.com/us-en/videos/AP-1YM9QCYE52111',
40 'only_matching': True,
41 }, {
42 'url': 'https://www.redbull.com/us-en/events/AP-1XV2K61Q51W11/live/AP-1XUJ86FDH1W11',
43 'only_matching': True,
1f767545
RA
44 }, {
45 'url': 'https://www.redbull.com/int-en/films/AP-1ZSMAW8FH2111',
46 'only_matching': True,
47 }, {
48 'url': 'https://www.redbull.com/int-en/episodes/AP-1TQWK7XE11W11',
49 'only_matching': True,
054a587d
S
50 }]
51
1f767545 52 def extract_info(self, video_id):
ba448445 53 session = self._download_json(
e2e18694 54 'https://api.redbull.tv/v3/session', video_id,
054a587d 55 note='Downloading access token', query={
ba448445 56 'category': 'personal_computer',
ba448445
RA
57 'os_family': 'http',
58 })
59 if session.get('code') == 'error':
60 raise ExtractorError('%s said: %s' % (
61 self.IE_NAME, session['message']))
e2e18694 62 token = session['token']
054a587d 63
ba448445 64 try:
e2e18694
RA
65 video = self._download_json(
66 'https://api.redbull.tv/v3/products/' + video_id,
ba448445 67 video_id, note='Downloading video information',
e2e18694 68 headers={'Authorization': token}
ba448445
RA
69 )
70 except ExtractorError as e:
3d2623a8 71 if isinstance(e.cause, HTTPError) and e.cause.status == 404:
ba448445 72 error_message = self._parse_json(
3d2623a8 73 e.cause.response.read().decode(), video_id)['error']
ba448445
RA
74 raise ExtractorError('%s said: %s' % (
75 self.IE_NAME, error_message), expected=True)
76 raise
054a587d 77
e2e18694 78 title = video['title'].strip()
054a587d 79
a9f5f5d6 80 formats, subtitles = self._extract_m3u8_formats_and_subtitles(
e2e18694
RA
81 'https://dms.redbull.tv/v3/%s/%s/playlist.m3u8' % (video_id, token),
82 video_id, 'mp4', entry_protocol='m3u8_native', m3u8_id='hls')
054a587d 83
e2e18694
RA
84 for resource in video.get('resources', []):
85 if resource.startswith('closed_caption_'):
86 splitted_resource = resource.split('_')
87 if splitted_resource[2]:
88 subtitles.setdefault('en', []).append({
89 'url': 'https://resources.redbull.tv/%s/%s' % (video_id, resource),
90 'ext': splitted_resource[2],
91 })
054a587d 92
e2e18694 93 subheading = video.get('subheading')
054a587d
S
94 if subheading:
95 title += ' - %s' % subheading
96
97 return {
98 'id': video_id,
99 'title': title,
e2e18694 100 'description': video.get('long_description') or video.get(
054a587d
S
101 'short_description'),
102 'duration': float_or_none(video.get('duration'), scale=1000),
054a587d
S
103 'formats': formats,
104 'subtitles': subtitles,
105 }
2efefdda 106
1f767545
RA
107 def _real_extract(self, url):
108 video_id = self._match_id(url)
109 return self.extract_info(video_id)
110
111
6368e2e6 112class RedBullEmbedIE(RedBullTVIE): # XXX: Do not subclass from concrete IE
1f767545
RA
113 _VALID_URL = r'https?://(?:www\.)?redbull\.com/embed/(?P<id>rrn:content:[^:]+:[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}:[a-z]{2}-[A-Z]{2,3})'
114 _TESTS = [{
115 # HLS manifest accessible only using assetId
116 'url': 'https://www.redbull.com/embed/rrn:content:episode-videos:f3021f4f-3ed4-51ac-915a-11987126e405:en-INT',
117 'only_matching': True,
118 }]
119 _VIDEO_ESSENSE_TMPL = '''... on %s {
120 videoEssence {
121 attributes
122 }
123 }'''
124
125 def _real_extract(self, url):
126 rrn_id = self._match_id(url)
127 asset_id = self._download_json(
128 'https://edge-graphql.crepo-production.redbullaws.com/v1/graphql',
b73612a2 129 rrn_id, headers={
130 'Accept': 'application/json',
131 'API-KEY': 'e90a1ff11335423998b100c929ecc866',
132 }, query={
1f767545
RA
133 'query': '''{
134 resource(id: "%s", enforceGeoBlocking: false) {
135 %s
136 %s
137 }
138}''' % (rrn_id, self._VIDEO_ESSENSE_TMPL % 'LiveVideo', self._VIDEO_ESSENSE_TMPL % 'VideoResource'),
139 })['data']['resource']['videoEssence']['attributes']['assetId']
140 return self.extract_info(asset_id)
141
2efefdda
S
142
143class RedBullTVRrnContentIE(InfoExtractor):
1f767545 144 _VALID_URL = r'https?://(?:www\.)?redbull\.com/(?P<region>[a-z]{2,3})-(?P<lang>[a-z]{2})/tv/(?:video|live|film)/(?P<id>rrn:content:[^:]+:[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})'
2efefdda
S
145 _TESTS = [{
146 'url': 'https://www.redbull.com/int-en/tv/video/rrn:content:live-videos:e3e6feb4-e95f-50b7-962a-c70f8fd13c73/mens-dh-finals-fort-william',
147 'only_matching': True,
148 }, {
149 'url': 'https://www.redbull.com/int-en/tv/video/rrn:content:videos:a36a0f36-ff1b-5db8-a69d-ee11a14bf48b/tn-ts-style?playlist=rrn:content:event-profiles:83f05926-5de8-5389-b5e4-9bb312d715e8:extras',
150 'only_matching': True,
1f767545
RA
151 }, {
152 'url': 'https://www.redbull.com/int-en/tv/film/rrn:content:films:d1f4d00e-4c04-5d19-b510-a805ffa2ab83/follow-me',
153 'only_matching': True,
2efefdda
S
154 }]
155
156 def _real_extract(self, url):
5ad28e7f 157 region, lang, rrn_id = self._match_valid_url(url).groups()
1f767545
RA
158 rrn_id += ':%s-%s' % (lang, region.upper())
159 return self.url_result(
160 'https://www.redbull.com/embed/' + rrn_id,
161 RedBullEmbedIE.ie_key(), rrn_id)
2efefdda 162
2efefdda 163
1f767545
RA
164class RedBullIE(InfoExtractor):
165 _VALID_URL = r'https?://(?:www\.)?redbull\.com/(?P<region>[a-z]{2,3})-(?P<lang>[a-z]{2})/(?P<type>(?:episode|film|(?:(?:recap|trailer)-)?video)s|live)/(?!AP-|rrn:content:)(?P<id>[^/?#&]+)'
166 _TESTS = [{
167 'url': 'https://www.redbull.com/int-en/episodes/grime-hashtags-s02-e04',
168 'md5': 'db8271a7200d40053a1809ed0dd574ff',
169 'info_dict': {
170 'id': 'AA-1MT8DQWA91W14',
171 'ext': 'mp4',
172 'title': 'Grime - Hashtags S2E4',
173 'description': 'md5:5546aa612958c08a98faaad4abce484d',
174 },
175 }, {
176 'url': 'https://www.redbull.com/int-en/films/kilimanjaro-mountain-of-greatness',
177 'only_matching': True,
178 }, {
179 'url': 'https://www.redbull.com/int-en/recap-videos/uci-mountain-bike-world-cup-2017-mens-xco-finals-from-vallnord',
180 'only_matching': True,
181 }, {
182 'url': 'https://www.redbull.com/int-en/trailer-videos/kings-of-content',
183 'only_matching': True,
184 }, {
185 'url': 'https://www.redbull.com/int-en/videos/tnts-style-red-bull-dance-your-style-s1-e12',
186 'only_matching': True,
187 }, {
188 'url': 'https://www.redbull.com/int-en/live/mens-dh-finals-fort-william',
189 'only_matching': True,
b03eebdb
RA
190 }, {
191 # only available on the int-en website so a fallback is need for the API
192 # https://www.redbull.com/v3/api/graphql/v1/v3/query/en-GB>en-INT?filter[uriSlug]=fia-wrc-saturday-recap-estonia&rb3Schema=v1:hero
193 'url': 'https://www.redbull.com/gb-en/live/fia-wrc-saturday-recap-estonia',
194 'only_matching': True,
1f767545 195 }]
b03eebdb
RA
196 _INT_FALLBACK_LIST = ['de', 'en', 'es', 'fr']
197 _LAT_FALLBACK_MAP = ['ar', 'bo', 'car', 'cl', 'co', 'mx', 'pe']
1f767545
RA
198
199 def _real_extract(self, url):
5ad28e7f 200 region, lang, filter_type, display_id = self._match_valid_url(url).groups()
1f767545
RA
201 if filter_type == 'episodes':
202 filter_type = 'episode-videos'
203 elif filter_type == 'live':
204 filter_type = 'live-videos'
205
b03eebdb
RA
206 regions = [region.upper()]
207 if region != 'int':
208 if region in self._LAT_FALLBACK_MAP:
209 regions.append('LAT')
210 if lang in self._INT_FALLBACK_LIST:
211 regions.append('INT')
212 locale = '>'.join(['%s-%s' % (lang, reg) for reg in regions])
213
1f767545 214 rrn_id = self._download_json(
b03eebdb 215 'https://www.redbull.com/v3/api/graphql/v1/v3/query/' + locale,
1f767545
RA
216 display_id, query={
217 'filter[type]': filter_type,
218 'filter[uriSlug]': display_id,
219 'rb3Schema': 'v1:hero',
220 })['data']['id']
2efefdda
S
221
222 return self.url_result(
1f767545
RA
223 'https://www.redbull.com/embed/' + rrn_id,
224 RedBullEmbedIE.ie_key(), rrn_id)