]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/nbc.py
Tolerate failure to `--write-link` due to unknown URL
[yt-dlp.git] / yt_dlp / extractor / nbc.py
CommitLineData
cd7ee7aa
JMF
1from __future__ import unicode_literals
2
58284890 3import base64
1139935d
RA
4import json
5import re
0bc56fa6
JMF
6
7from .common import InfoExtractor
574b2a73 8from .theplatform import ThePlatformIE
fdf9b959 9from .adobepass import AdobePassIE
d0c5fabc 10from ..compat import compat_urllib_parse_unquote
1cc79574 11from ..utils import (
895e5c03 12 int_or_none,
9160a0c6 13 parse_age_limit,
895e5c03 14 parse_duration,
3e376d18 15 RegexNotFoundError,
b46b65ed 16 smuggle_url,
895e5c03
RA
17 try_get,
18 unified_timestamp,
6e416b21 19 update_url_query,
37e64add 20)
0bc56fa6
JMF
21
22
9160a0c6 23class NBCIE(ThePlatformIE):
d673ab65 24 _VALID_URL = r'https?(?P<permalink>://(?:www\.)?nbc\.com/(?:classic-tv/)?[^/]+/video/[^/]+/(?P<id>n?\d+))'
58c1f6f0
S
25
26 _TESTS = [
27 {
fdf9b959 28 'url': 'http://www.nbc.com/the-tonight-show/video/jimmy-fallon-surprises-fans-at-ben-jerrys/2848237',
58c1f6f0 29 'info_dict': {
fdf9b959 30 'id': '2848237',
e881c4bc 31 'ext': 'mp4',
5c8a3f86
JMF
32 'title': 'Jimmy Fallon Surprises Fans at Ben & Jerry\'s',
33 'description': 'Jimmy gives out free scoops of his new "Tonight Dough" ice cream flavor by surprising customers at the Ben & Jerry\'s scoop shop.',
79ba9140 34 'timestamp': 1424246400,
35 'upload_date': '20150218',
36 'uploader': 'NBCU-COM',
58c1f6f0 37 },
e881c4bc
YCH
38 'params': {
39 # m3u8 download
40 'skip_download': True,
41 },
020cf5eb 42 },
b9b3ab45
YCH
43 {
44 'url': 'http://www.nbc.com/saturday-night-live/video/star-wars-teaser/2832821',
45 'info_dict': {
e881c4bc
YCH
46 'id': '2832821',
47 'ext': 'mp4',
b9b3ab45
YCH
48 'title': 'Star Wars Teaser',
49 'description': 'md5:0b40f9cbde5b671a7ff62fceccc4f442',
79ba9140 50 'timestamp': 1417852800,
51 'upload_date': '20141206',
52 'uploader': 'NBCU-COM',
b9b3ab45 53 },
e881c4bc
YCH
54 'params': {
55 # m3u8 download
56 'skip_download': True,
57 },
b9b3ab45 58 'skip': 'Only works from US',
0fe2ff78 59 },
e6e90515
YCH
60 {
61 # HLS streams requires the 'hdnea3' cookie
62 'url': 'http://www.nbc.com/Kings/video/goliath/n1806',
63 'info_dict': {
fdf9b959 64 'id': '101528f5a9e8127b107e98c5e6ce4638',
e6e90515
YCH
65 'ext': 'mp4',
66 'title': 'Goliath',
67 'description': 'When an unknown soldier saves the life of the King\'s son in battle, he\'s thrust into the limelight and politics of the kingdom.',
68 'timestamp': 1237100400,
69 'upload_date': '20090315',
70 'uploader': 'NBCU-COM',
71 },
72 'params': {
73 'skip_download': True,
74 },
75 'skip': 'Only works from US',
d673ab65
L
76 },
77 {
78 'url': 'https://www.nbc.com/classic-tv/charles-in-charge/video/charles-in-charge-pilot/n3310',
79 'only_matching': True,
80 },
d0c5fabc
T
81 {
82 # Percent escaped url
83 'url': 'https://www.nbc.com/up-all-night/video/day-after-valentine%27s-day/n2189',
84 'only_matching': True,
85 }
58c1f6f0 86 ]
020cf5eb
JMF
87
88 def _real_extract(self, url):
5ad28e7f 89 permalink, video_id = self._match_valid_url(url).groups()
d0c5fabc 90 permalink = 'http' + compat_urllib_parse_unquote(permalink)
48ff5590 91 video_data = self._download_json(
311ee457 92 'https://friendship.nbc.co/v2/graphql', video_id, query={
48ff5590
RA
93 'query': '''query bonanzaPage(
94 $app: NBCUBrands! = nbc
95 $name: String!
96 $oneApp: Boolean
97 $platform: SupportedPlatforms! = web
98 $type: EntityPageType! = VIDEO
99 $userId: String!
100) {
101 bonanzaPage(
102 app: $app
103 name: $name
104 oneApp: $oneApp
105 platform: $platform
106 type: $type
107 userId: $userId
108 ) {
109 metadata {
311ee457
RA
110 ... on VideoPageData {
111 description
112 episodeNumber
113 keywords
114 locked
115 mpxAccountId
116 mpxGuid
117 rating
48ff5590 118 resourceId
311ee457
RA
119 seasonNumber
120 secondaryTitle
121 seriesShortTitle
122 }
123 }
124 }
48ff5590
RA
125}''',
126 'variables': json.dumps({
127 'name': permalink,
128 'oneApp': True,
129 'userId': '0',
130 }),
131 })['data']['bonanzaPage']['metadata']
2eeb588e
RA
132 query = {
133 'mbr': 'true',
134 'manifest': 'm3u',
135 }
311ee457 136 video_id = video_data['mpxGuid']
9160a0c6
TSJ
137 tp_path = 'NnzsPC/media/guid/%s/%s' % (video_data.get('mpxAccountId') or '2410887629', video_id)
138 tpm = self._download_theplatform_metadata(tp_path, video_id)
139 title = tpm.get('title') or video_data.get('secondaryTitle')
311ee457 140 if video_data.get('locked'):
2eeb588e 141 resource = self._get_mvpd_resource(
48ff5590
RA
142 video_data.get('resourceId') or 'nbcentertainment',
143 title, video_id, video_data.get('rating'))
2eeb588e
RA
144 query['auth'] = self._extract_mvpd_auth(
145 url, video_id, 'nbcentertainment', resource)
146 theplatform_url = smuggle_url(update_url_query(
311ee457 147 'http://link.theplatform.com/s/NnzsPC/media/guid/%s/%s' % (video_data.get('mpxAccountId') or '2410887629', video_id),
2eeb588e 148 query), {'force_smil_url': True})
9160a0c6
TSJ
149
150 # Empty string or 0 can be valid values for these. So the check must be `is None`
151 description = video_data.get('description')
152 if description is None:
153 description = tpm.get('description')
154 episode_number = int_or_none(video_data.get('episodeNumber'))
155 if episode_number is None:
156 episode_number = int_or_none(tpm.get('nbcu$airOrder'))
157 rating = video_data.get('rating')
158 if rating is None:
159 try_get(tpm, lambda x: x['ratings'][0]['rating'])
160 season_number = int_or_none(video_data.get('seasonNumber'))
161 if season_number is None:
162 season_number = int_or_none(tpm.get('nbcu$seasonNumber'))
163 series = video_data.get('seriesShortTitle')
164 if series is None:
165 series = tpm.get('nbcu$seriesShortTitle')
166 tags = video_data.get('keywords')
167 if tags is None or len(tags) == 0:
168 tags = tpm.get('keywords')
169
2eeb588e 170 return {
e881c4bc 171 '_type': 'url_transparent',
9160a0c6
TSJ
172 'age_limit': parse_age_limit(rating),
173 'description': description,
174 'episode': title,
175 'episode_number': episode_number,
e881c4bc 176 'id': video_id,
9160a0c6
TSJ
177 'ie_key': 'ThePlatform',
178 'season_number': season_number,
179 'series': series,
180 'tags': tags,
2eeb588e
RA
181 'title': title,
182 'url': theplatform_url,
e881c4bc 183 }
020cf5eb
JMF
184
185
a2a4d5fa 186class NBCSportsVPlayerIE(InfoExtractor):
29f7c58a 187 _VALID_URL_BASE = r'https?://(?:vplayer\.nbcsports\.com|(?:www\.)?nbcsports\.com/vplayer)/'
188 _VALID_URL = _VALID_URL_BASE + r'(?:[^/]+/)+(?P<id>[0-9a-zA-Z_]+)'
a28ccbab 189
5cbb2699 190 _TESTS = [{
12ea5c79 191 'url': 'https://vplayer.nbcsports.com/p/BxmELC/nbcsports_embed/select/9CsDKds0kvHI',
a28ccbab
YCH
192 'info_dict': {
193 'id': '9CsDKds0kvHI',
12ea5c79 194 'ext': 'mp4',
a28ccbab
YCH
195 'description': 'md5:df390f70a9ba7c95ff1daace988f0d8d',
196 'title': 'Tyler Kalinoski hits buzzer-beater to lift Davidson',
79ba9140 197 'timestamp': 1426270238,
198 'upload_date': '20150313',
199 'uploader': 'NBCU-SPORTS',
bfa0e270 200 'duration': 72.818,
201 'chapters': [],
202 'thumbnail': r're:^https?://.*\.jpg$'
a28ccbab 203 }
5cbb2699 204 }, {
bfa0e270 205 'url': 'https://vplayer.nbcsports.com/p/BxmELC/nbcsports_embed/select/media/PEgOtlNcC_y2',
5cbb2699 206 'only_matching': True,
29f7c58a 207 }, {
208 'url': 'https://www.nbcsports.com/vplayer/p/BxmELC/nbcsports/select/PHJSaFWbrTY9?form=html&autoPlay=true',
209 'only_matching': True,
5cbb2699 210 }]
a28ccbab 211
a2a4d5fa
YCH
212 @staticmethod
213 def _extract_url(webpage):
bfa0e270 214 video_urls = re.search(
215 r'(?:iframe[^>]+|var video|div[^>]+data-(?:mpx-)?)[sS]rc\s?=\s?"(?P<url>%s[^\"]+)' % NBCSportsVPlayerIE._VALID_URL_BASE, webpage)
216 if video_urls:
217 return video_urls.group('url')
a2a4d5fa 218
a28ccbab
YCH
219 def _real_extract(self, url):
220 video_id = self._match_id(url)
221 webpage = self._download_webpage(url, video_id)
bfa0e270 222 theplatform_url = self._html_search_regex(r'tp:releaseUrl="(.+?)"', webpage, 'url')
a28ccbab
YCH
223 return self.url_result(theplatform_url, 'ThePlatform')
224
225
a2a4d5fa 226class NBCSportsIE(InfoExtractor):
29f7c58a 227 _VALID_URL = r'https?://(?:www\.)?nbcsports\.com//?(?!vplayer/)(?:[^/]+/)+(?P<id>[0-9a-z-]+)'
a2a4d5fa 228
29f7c58a 229 _TESTS = [{
230 # iframe src
a2a4d5fa 231 'url': 'http://www.nbcsports.com//college-basketball/ncaab/tom-izzo-michigan-st-has-so-much-respect-duke',
a2a4d5fa
YCH
232 'info_dict': {
233 'id': 'PHJSaFWbrTY9',
29f7c58a 234 'ext': 'mp4',
a2a4d5fa
YCH
235 'title': 'Tom Izzo, Michigan St. has \'so much respect\' for Duke',
236 'description': 'md5:ecb459c9d59e0766ac9c7d5d0eda8113',
0738187f
YCH
237 'uploader': 'NBCU-SPORTS',
238 'upload_date': '20150330',
239 'timestamp': 1427726529,
bfa0e270 240 'chapters': [],
241 'thumbnail': 'https://hdliveextra-a.akamaihd.net/HD/image_sports/NBCU_Sports_Group_-_nbcsports/253/303/izzodps.jpg',
242 'duration': 528.395,
a2a4d5fa 243 }
29f7c58a 244 }, {
245 # data-mpx-src
246 'url': 'https://www.nbcsports.com/philadelphia/philadelphia-phillies/bruce-bochy-hector-neris-hes-idiot',
247 'only_matching': True,
248 }, {
249 # data-src
250 'url': 'https://www.nbcsports.com/boston/video/report-card-pats-secondary-no-match-josh-allen',
251 'only_matching': True,
252 }]
a2a4d5fa
YCH
253
254 def _real_extract(self, url):
255 video_id = self._match_id(url)
256 webpage = self._download_webpage(url, video_id)
257 return self.url_result(
258 NBCSportsVPlayerIE._extract_url(webpage), 'NBCSportsVPlayer')
259
260
1139935d
RA
261class NBCSportsStreamIE(AdobePassIE):
262 _VALID_URL = r'https?://stream\.nbcsports\.com/.+?\bpid=(?P<id>\d+)'
263 _TEST = {
264 'url': 'http://stream.nbcsports.com/nbcsn/generic?pid=206559',
265 'info_dict': {
266 'id': '206559',
267 'ext': 'mp4',
268 'title': 'Amgen Tour of California Women\'s Recap',
269 'description': 'md5:66520066b3b5281ada7698d0ea2aa894',
270 },
271 'params': {
272 # m3u8 download
273 'skip_download': True,
274 },
275 'skip': 'Requires Adobe Pass Authentication',
276 }
277
278 def _real_extract(self, url):
279 video_id = self._match_id(url)
280 live_source = self._download_json(
281 'http://stream.nbcsports.com/data/live_sources_%s.json' % video_id,
282 video_id)
283 video_source = live_source['videoSources'][0]
284 title = video_source['title']
285 source_url = None
286 for k in ('source', 'msl4source', 'iossource', 'hlsv4'):
287 sk = k + 'Url'
288 source_url = video_source.get(sk) or video_source.get(sk + 'Alt')
289 if source_url:
290 break
291 else:
292 source_url = video_source['ottStreamUrl']
293 is_live = video_source.get('type') == 'live' or video_source.get('status') == 'Live'
294 resource = self._get_mvpd_resource('nbcsports', title, video_id, '')
295 token = self._extract_mvpd_auth(url, video_id, 'nbcsports', resource)
296 tokenized_url = self._download_json(
297 'https://token.playmakerservices.com/cdn',
298 video_id, data=json.dumps({
299 'requestorId': 'nbcsports',
300 'pid': video_id,
301 'application': 'NBCSports',
302 'version': 'v1',
303 'platform': 'desktop',
304 'cdn': 'akamai',
305 'url': video_source['sourceUrl'],
306 'token': base64.b64encode(token.encode()).decode(),
307 'resourceId': base64.b64encode(resource.encode()).decode(),
308 }).encode())['tokenizedUrl']
309 formats = self._extract_m3u8_formats(tokenized_url, video_id, 'mp4')
310 self._sort_formats(formats)
311 return {
312 'id': video_id,
39ca3b5c 313 'title': title,
1139935d
RA
314 'description': live_source.get('description'),
315 'formats': formats,
316 'is_live': is_live,
317 }
318
319
574b2a73 320class NBCNewsIE(ThePlatformIE):
a843464a 321 _VALID_URL = r'(?x)https?://(?:www\.)?(?:nbcnews|today|msnbc)\.com/([^/]+/)*(?:.*-)?(?P<id>[^/?]+)'
0bc56fa6 322
87fe568c 323 _TESTS = [
87fe568c 324 {
574b2a73 325 'url': 'http://www.nbcnews.com/watch/nbcnews-com/how-twitter-reacted-to-the-snowden-interview-269389891880',
895e5c03 326 'md5': 'cf4bc9e6ce0130f00f545d80ecedd4bf',
87fe568c 327 'info_dict': {
a843464a 328 'id': '269389891880',
10e3d734 329 'ext': 'mp4',
87fe568c
JMF
330 'title': 'How Twitter Reacted To The Snowden Interview',
331 'description': 'md5:65a0bd5d76fe114f3c2727aa3a81fe64',
0437307a
RA
332 'timestamp': 1401363060,
333 'upload_date': '20140529',
87fe568c 334 },
87fe568c 335 },
2df54b4b
S
336 {
337 'url': 'http://www.nbcnews.com/feature/dateline-full-episodes/full-episode-family-business-n285156',
338 'md5': 'fdbf39ab73a72df5896b6234ff98518a',
339 'info_dict': {
0437307a 340 'id': '529953347624',
2df54b4b
S
341 'ext': 'mp4',
342 'title': 'FULL EPISODE: Family Business',
343 'description': 'md5:757988edbaae9d7be1d585eb5d55cc04',
344 },
574b2a73 345 'skip': 'This page is unavailable.',
2df54b4b 346 },
d9aa2b78
RS
347 {
348 'url': 'http://www.nbcnews.com/nightly-news/video/nightly-news-with-brian-williams-full-broadcast-february-4-394064451844',
895e5c03 349 'md5': '8eb831eca25bfa7d25ddd83e85946548',
d9aa2b78 350 'info_dict': {
a843464a 351 'id': '394064451844',
d9aa2b78
RS
352 'ext': 'mp4',
353 'title': 'Nightly News with Brian Williams Full Broadcast (February 4)',
354 'description': 'md5:1c10c1eccbe84a26e5debb4381e2d3c5',
0437307a 355 'timestamp': 1423104900,
0437307a 356 'upload_date': '20150205',
d9aa2b78
RS
357 },
358 },
574b2a73 359 {
360 'url': 'http://www.nbcnews.com/business/autos/volkswagen-11-million-vehicles-could-have-suspect-software-emissions-scandal-n431456',
895e5c03 361 'md5': '4a8c4cec9e1ded51060bdda36ff0a5c0',
574b2a73 362 'info_dict': {
895e5c03 363 'id': 'n431456',
574b2a73 364 'ext': 'mp4',
895e5c03
RA
365 'title': "Volkswagen U.S. Chief: We 'Totally Screwed Up'",
366 'description': 'md5:d22d1281a24f22ea0880741bb4dd6301',
0437307a
RA
367 'upload_date': '20150922',
368 'timestamp': 1442917800,
574b2a73 369 },
574b2a73 370 },
cb7d4d0e 371 {
372 'url': 'http://www.today.com/video/see-the-aurora-borealis-from-space-in-stunning-new-nasa-video-669831235788',
373 'md5': '118d7ca3f0bea6534f119c68ef539f71',
374 'info_dict': {
a843464a 375 'id': '669831235788',
cb7d4d0e 376 'ext': 'mp4',
377 'title': 'See the aurora borealis from space in stunning new NASA video',
378 'description': 'md5:74752b7358afb99939c5f8bb2d1d04b1',
379 'upload_date': '20160420',
380 'timestamp': 1461152093,
0437307a
RA
381 },
382 },
383 {
384 'url': 'http://www.msnbc.com/all-in-with-chris-hayes/watch/the-chaotic-gop-immigration-vote-314487875924',
385 'md5': '6d236bf4f3dddc226633ce6e2c3f814d',
386 'info_dict': {
a843464a 387 'id': '314487875924',
0437307a
RA
388 'ext': 'mp4',
389 'title': 'The chaotic GOP immigration vote',
390 'description': 'The Republican House votes on a border bill that has no chance of getting through the Senate or signed by the President and is drawing criticism from all sides.',
ec85ded8 391 'thumbnail': r're:^https?://.*\.jpg$',
0437307a
RA
392 'timestamp': 1406937606,
393 'upload_date': '20140802',
cb7d4d0e 394 },
395 },
3f125c8c
S
396 {
397 'url': 'http://www.nbcnews.com/watch/dateline/full-episode--deadly-betrayal-386250819952',
398 'only_matching': True,
399 },
5de008e8
YCH
400 {
401 # From http://www.vulture.com/2016/06/letterman-couldnt-care-less-about-late-night.html
402 'url': 'http://www.nbcnews.com/widget/video-embed/701714499682',
403 'only_matching': True,
404 },
87fe568c 405 ]
0bc56fa6
JMF
406
407 def _real_extract(self, url):
a843464a 408 video_id = self._match_id(url)
895e5c03
RA
409 webpage = self._download_webpage(url, video_id)
410
135dfa2c 411 data = self._search_nextjs_data(webpage, video_id)['props']['initialState']
895e5c03
RA
412 video_data = try_get(data, lambda x: x['video']['current'], dict)
413 if not video_data:
414 video_data = data['article']['content'][0]['primaryMedia']['video']
415 title = video_data['headline']['primary']
416
417 formats = []
418 for va in video_data.get('videoAssets', []):
419 public_url = va.get('publicUrl')
420 if not public_url:
421 continue
422 if '://link.theplatform.com/' in public_url:
423 public_url = update_url_query(public_url, {'format': 'redirect'})
424 format_id = va.get('format')
425 if format_id == 'M3U':
426 formats.extend(self._extract_m3u8_formats(
427 public_url, video_id, 'mp4', 'm3u8_native',
428 m3u8_id=format_id, fatal=False))
429 continue
430 tbr = int_or_none(va.get('bitrate'), 1000)
431 if tbr:
432 format_id += '-%d' % tbr
433 formats.append({
434 'format_id': format_id,
435 'url': public_url,
436 'width': int_or_none(va.get('width')),
437 'height': int_or_none(va.get('height')),
438 'tbr': tbr,
439 'ext': 'mp4',
440 })
441 self._sort_formats(formats)
6e416b21 442
895e5c03
RA
443 subtitles = {}
444 closed_captioning = video_data.get('closedCaptioning')
445 if closed_captioning:
446 for cc_url in closed_captioning.values():
447 if not cc_url:
448 continue
449 subtitles.setdefault('en', []).append({
450 'url': cc_url,
451 })
6e416b21 452
a843464a 453 return {
a843464a 454 'id': video_id,
895e5c03
RA
455 'title': title,
456 'description': try_get(video_data, lambda x: x['description']['primary']),
457 'thumbnail': try_get(video_data, lambda x: x['primaryImage']['url']['primary']),
458 'duration': parse_duration(video_data.get('duration')),
459 'timestamp': unified_timestamp(video_data.get('datePublished')),
460 'formats': formats,
461 'subtitles': subtitles,
a843464a 462 }
be457302
YCH
463
464
465class NBCOlympicsIE(InfoExtractor):
58284890 466 IE_NAME = 'nbcolympics'
3e376d18 467 _VALID_URL = r'https?://www\.nbcolympics\.com/videos?/(?P<id>[0-9a-z-]+)'
be457302
YCH
468
469 _TEST = {
470 # Geo-restricted to US
471 'url': 'http://www.nbcolympics.com/video/justin-roses-son-leo-was-tears-after-his-dad-won-gold',
472 'md5': '54fecf846d05429fbaa18af557ee523a',
473 'info_dict': {
474 'id': 'WjTBzDXx5AUq',
475 'display_id': 'justin-roses-son-leo-was-tears-after-his-dad-won-gold',
476 'ext': 'mp4',
477 'title': 'Rose\'s son Leo was in tears after his dad won gold',
478 'description': 'Olympic gold medalist Justin Rose gets emotional talking to the impact his win in men\'s golf has already had on his children.',
479 'timestamp': 1471274964,
480 'upload_date': '20160815',
481 'uploader': 'NBCU-SPORTS',
482 },
483 }
484
485 def _real_extract(self, url):
486 display_id = self._match_id(url)
487
488 webpage = self._download_webpage(url, display_id)
489
3e376d18
W
490 try:
491 drupal_settings = self._parse_json(self._search_regex(
492 r'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);',
493 webpage, 'drupal settings'), display_id)
494
495 iframe_url = drupal_settings['vod']['iframe_url']
496 theplatform_url = iframe_url.replace(
497 'vplayer.nbcolympics.com', 'player.theplatform.com')
498 except RegexNotFoundError:
499 theplatform_url = self._search_regex(
500 r"([\"'])embedUrl\1: *([\"'])(?P<embedUrl>.+)\2",
501 webpage, 'embedding URL', group="embedUrl")
be457302
YCH
502
503 return {
504 '_type': 'url_transparent',
505 'url': theplatform_url,
506 'ie_key': ThePlatformIE.ie_key(),
507 'display_id': display_id,
508 }
58284890
RA
509
510
511class NBCOlympicsStreamIE(AdobePassIE):
512 IE_NAME = 'nbcolympics:stream'
513 _VALID_URL = r'https?://stream\.nbcolympics\.com/(?P<id>[0-9a-z-]+)'
bb36a55c 514 _TESTS = [
515 {
516 'note': 'Tokenized m3u8 source URL',
517 'url': 'https://stream.nbcolympics.com/womens-soccer-group-round-11',
518 'info_dict': {
519 'id': '2019740',
520 'ext': 'mp4',
521 'title': r"re:Women's Group Stage - Netherlands vs\. Brazil [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$",
522 },
523 'params': {
524 'skip_download': 'm3u8',
525 },
526 }, {
527 'note': 'Plain m3u8 source URL',
528 'url': 'https://stream.nbcolympics.com/gymnastics-event-finals-mens-floor-pommel-horse-womens-vault-bars',
529 'info_dict': {
530 'id': '2021729',
531 'ext': 'mp4',
532 'title': r're:Event Finals: M Floor, W Vault, M Pommel, W Uneven Bars [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
533 },
534 'params': {
535 'skip_download': 'm3u8',
536 },
58284890 537 },
bb36a55c 538 ]
58284890
RA
539
540 def _real_extract(self, url):
541 display_id = self._match_id(url)
542 webpage = self._download_webpage(url, display_id)
543 pid = self._search_regex(r'pid\s*=\s*(\d+);', webpage, 'pid')
bb36a55c 544
58284890 545 event_config = self._download_json(
bb36a55c 546 f'http://stream.nbcolympics.com/data/event_config_{pid}.json',
547 pid, 'Downloading event config')['eventConfig']
548
549 title = event_config['eventTitle']
550 is_live = {'live': True, 'replay': False}.get(event_config.get('eventStatus'))
bb36a55c 551
58284890 552 source_url = self._download_json(
bb36a55c 553 f'https://api-leap.nbcsports.com/feeds/assets/{pid}?application=NBCOlympics&platform=desktop&format=nbc-player&env=staging',
554 pid, 'Downloading leap config'
555 )['videoSources'][0]['cdnSources']['primary'][0]['sourceUrl']
556
557 if event_config.get('cdnToken'):
558 ap_resource = self._get_mvpd_resource(
559 event_config.get('resourceId', 'NBCOlympics'),
560 re.sub(r'[^\w\d ]+', '', event_config['eventTitle']), pid,
561 event_config.get('ratingId', 'NO VALUE'))
562 media_token = self._extract_mvpd_auth(url, pid, event_config.get('requestorId', 'NBCOlympics'), ap_resource)
563
564 source_url = self._download_json(
565 'https://tokens.playmakerservices.com/', pid, 'Retrieving tokenized URL',
566 data=json.dumps({
567 'application': 'NBCSports',
568 'authentication-type': 'adobe-pass',
569 'cdn': 'akamai',
570 'pid': pid,
571 'platform': 'desktop',
572 'requestorId': 'NBCOlympics',
573 'resourceId': base64.b64encode(ap_resource.encode()).decode(),
574 'token': base64.b64encode(media_token.encode()).decode(),
575 'url': source_url,
576 'version': 'v1',
577 }).encode(),
578 )['akamai'][0]['tokenizedUrl']
579
580 formats = self._extract_m3u8_formats(source_url, pid, 'mp4', live=is_live)
581 for f in formats:
582 # -http_seekable requires ffmpeg 4.3+ but it doesnt seem possible to
583 # download with ffmpeg without this option
584 f['_ffmpeg_args'] = ['-seekable', '0', '-http_seekable', '0', '-icy', '0']
58284890
RA
585 self._sort_formats(formats)
586
587 return {
588 'id': pid,
589 'display_id': display_id,
590 'title': title,
591 'formats': formats,
bb36a55c 592 'is_live': is_live,
58284890 593 }