1 from __future__ 
import unicode_literals
 
   7 from .common 
import InfoExtractor
 
   8 from .theplatform 
import ThePlatformIE
 
   9 from .adobepass 
import AdobePassIE
 
  10 from ..compat 
import compat_urllib_parse_unquote
 
  22 class NBCIE(AdobePassIE
): 
  23     _VALID_URL 
= r
'https?(?P<permalink>://(?:www\.)?nbc\.com/(?:classic-tv/)?[^/]+/video/[^/]+/(?P<id>n?\d+))' 
  27             'url': 'http://www.nbc.com/the-tonight-show/video/jimmy-fallon-surprises-fans-at-ben-jerrys/2848237', 
  31                 'title': 'Jimmy Fallon Surprises Fans at Ben & Jerry\'s', 
  32                 'description': 'Jimmy gives out free scoops of his new "Tonight Dough" ice cream flavor by surprising customers at the Ben & Jerry\'s scoop shop.', 
  33                 'timestamp': 1424246400, 
  34                 'upload_date': '20150218', 
  35                 'uploader': 'NBCU-COM', 
  39                 'skip_download': True, 
  43             'url': 'http://www.nbc.com/saturday-night-live/video/star-wars-teaser/2832821', 
  47                 'title': 'Star Wars Teaser', 
  48                 'description': 'md5:0b40f9cbde5b671a7ff62fceccc4f442', 
  49                 'timestamp': 1417852800, 
  50                 'upload_date': '20141206', 
  51                 'uploader': 'NBCU-COM', 
  55                 'skip_download': True, 
  57             'skip': 'Only works from US', 
  60             # HLS streams requires the 'hdnea3' cookie 
  61             'url': 'http://www.nbc.com/Kings/video/goliath/n1806', 
  63                 'id': '101528f5a9e8127b107e98c5e6ce4638', 
  66                 '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.', 
  67                 'timestamp': 1237100400, 
  68                 'upload_date': '20090315', 
  69                 'uploader': 'NBCU-COM', 
  72                 'skip_download': True, 
  74             'skip': 'Only works from US', 
  77             'url': 'https://www.nbc.com/classic-tv/charles-in-charge/video/charles-in-charge-pilot/n3310', 
  78             'only_matching': True, 
  82             'url': 'https://www.nbc.com/up-all-night/video/day-after-valentine%27s-day/n2189', 
  83             'only_matching': True, 
  87     def _real_extract(self
, url
): 
  88         permalink
, video_id 
= re
.match(self
._VALID
_URL
, url
).groups() 
  89         permalink 
= 'http' + compat_urllib_parse_unquote(permalink
) 
  90         video_data 
= self
._download
_json
( 
  91             'https://friendship.nbc.co/v2/graphql', video_id
, query
={ 
  92                 'query': '''query bonanzaPage( 
  93   $app: NBCUBrands! = nbc 
  96   $platform: SupportedPlatforms! = web 
  97   $type: EntityPageType! = VIDEO 
 109       ... on VideoPageData { 
 125                 'variables': json
.dumps({ 
 130             })['data']['bonanzaPage']['metadata'] 
 135         video_id 
= video_data
['mpxGuid'] 
 136         title 
= video_data
['secondaryTitle'] 
 137         if video_data
.get('locked'): 
 138             resource 
= self
._get
_mvpd
_resource
( 
 139                 video_data
.get('resourceId') or 'nbcentertainment', 
 140                 title
, video_id
, video_data
.get('rating')) 
 141             query
['auth'] = self
._extract
_mvpd
_auth
( 
 142                 url
, video_id
, 'nbcentertainment', resource
) 
 143         theplatform_url 
= smuggle_url(update_url_query( 
 144             'http://link.theplatform.com/s/NnzsPC/media/guid/%s/%s' % (video_data
.get('mpxAccountId') or '2410887629', video_id
), 
 145             query
), {'force_smil_url': True}) 
 147             '_type': 'url_transparent', 
 150             'url': theplatform_url
, 
 151             'description': video_data
.get('description'), 
 152             'tags': video_data
.get('keywords'), 
 153             'season_number': int_or_none(video_data
.get('seasonNumber')), 
 154             'episode_number': int_or_none(video_data
.get('episodeNumber')), 
 156             'series': video_data
.get('seriesShortTitle'), 
 157             'ie_key': 'ThePlatform', 
 161 class NBCSportsVPlayerIE(InfoExtractor
): 
 162     _VALID_URL 
= r
'https?://vplayer\.nbcsports\.com/(?:[^/]+/)+(?P<id>[0-9a-zA-Z_]+)' 
 165         'url': 'https://vplayer.nbcsports.com/p/BxmELC/nbcsports_embed/select/9CsDKds0kvHI', 
 167             'id': '9CsDKds0kvHI', 
 169             'description': 'md5:df390f70a9ba7c95ff1daace988f0d8d', 
 170             'title': 'Tyler Kalinoski hits buzzer-beater to lift Davidson', 
 171             'timestamp': 1426270238, 
 172             'upload_date': '20150313', 
 173             'uploader': 'NBCU-SPORTS', 
 176         'url': 'https://vplayer.nbcsports.com/p/BxmELC/nbcsports_embed/select/media/_hqLjQ95yx8Z', 
 177         'only_matching': True, 
 181     def _extract_url(webpage
): 
 182         iframe_m 
= re
.search( 
 183             r
'<iframe[^>]+src="(?P<url>https?://vplayer\.nbcsports\.com/[^"]+)"', webpage
) 
 185             return iframe_m
.group('url') 
 187     def _real_extract(self
, url
): 
 188         video_id 
= self
._match
_id
(url
) 
 189         webpage 
= self
._download
_webpage
(url
, video_id
) 
 190         theplatform_url 
= self
._og
_search
_video
_url
(webpage
).replace( 
 191             'vplayer.nbcsports.com', 'player.theplatform.com') 
 192         return self
.url_result(theplatform_url
, 'ThePlatform') 
 195 class NBCSportsIE(InfoExtractor
): 
 196     # Does not include https because its certificate is invalid 
 197     _VALID_URL 
= r
'https?://(?:www\.)?nbcsports\.com//?(?:[^/]+/)+(?P<id>[0-9a-z-]+)' 
 200         'url': 'http://www.nbcsports.com//college-basketball/ncaab/tom-izzo-michigan-st-has-so-much-respect-duke', 
 202             'id': 'PHJSaFWbrTY9', 
 204             'title': 'Tom Izzo, Michigan St. has \'so much respect\' for Duke', 
 205             'description': 'md5:ecb459c9d59e0766ac9c7d5d0eda8113', 
 206             'uploader': 'NBCU-SPORTS', 
 207             'upload_date': '20150330', 
 208             'timestamp': 1427726529, 
 212     def _real_extract(self
, url
): 
 213         video_id 
= self
._match
_id
(url
) 
 214         webpage 
= self
._download
_webpage
(url
, video_id
) 
 215         return self
.url_result( 
 216             NBCSportsVPlayerIE
._extract
_url
(webpage
), 'NBCSportsVPlayer') 
 219 class NBCSportsStreamIE(AdobePassIE
): 
 220     _VALID_URL 
= r
'https?://stream\.nbcsports\.com/.+?\bpid=(?P<id>\d+)' 
 222         'url': 'http://stream.nbcsports.com/nbcsn/generic?pid=206559', 
 226             'title': 'Amgen Tour of California Women\'s Recap', 
 227             'description': 'md5:66520066b3b5281ada7698d0ea2aa894', 
 231             'skip_download': True, 
 233         'skip': 'Requires Adobe Pass Authentication', 
 236     def _real_extract(self
, url
): 
 237         video_id 
= self
._match
_id
(url
) 
 238         live_source 
= self
._download
_json
( 
 239             'http://stream.nbcsports.com/data/live_sources_%s.json' % video_id
, 
 241         video_source 
= live_source
['videoSources'][0] 
 242         title 
= video_source
['title'] 
 244         for k 
in ('source', 'msl4source', 'iossource', 'hlsv4'): 
 246             source_url 
= video_source
.get(sk
) or video_source
.get(sk 
+ 'Alt') 
 250             source_url 
= video_source
['ottStreamUrl'] 
 251         is_live 
= video_source
.get('type') == 'live' or video_source
.get('status') == 'Live' 
 252         resource 
= self
._get
_mvpd
_resource
('nbcsports', title
, video_id
, '') 
 253         token 
= self
._extract
_mvpd
_auth
(url
, video_id
, 'nbcsports', resource
) 
 254         tokenized_url 
= self
._download
_json
( 
 255             'https://token.playmakerservices.com/cdn', 
 256             video_id
, data
=json
.dumps({ 
 257                 'requestorId': 'nbcsports', 
 259                 'application': 'NBCSports', 
 261                 'platform': 'desktop', 
 263                 'url': video_source
['sourceUrl'], 
 264                 'token': base64
.b64encode(token
.encode()).decode(), 
 265                 'resourceId': base64
.b64encode(resource
.encode()).decode(), 
 266             }).encode())['tokenizedUrl'] 
 267         formats 
= self
._extract
_m
3u8_formats
(tokenized_url
, video_id
, 'mp4') 
 268         self
._sort
_formats
(formats
) 
 271             'title': self
._live
_title
(title
) if is_live 
else title
, 
 272             'description': live_source
.get('description'), 
 278 class CSNNEIE(InfoExtractor
): 
 279     _VALID_URL 
= r
'https?://(?:www\.)?csnne\.com/video/(?P<id>[0-9a-z-]+)' 
 282         'url': 'http://www.csnne.com/video/snc-evening-update-wright-named-red-sox-no-5-starter', 
 284             'id': 'yvBLLUgQ8WU0', 
 286             'title': 'SNC evening update: Wright named Red Sox\' No. 5 starter.', 
 287             'description': 'md5:1753cfee40d9352b19b4c9b3e589b9e3', 
 288             'timestamp': 1459369979, 
 289             'upload_date': '20160330', 
 290             'uploader': 'NBCU-SPORTS', 
 294     def _real_extract(self
, url
): 
 295         display_id 
= self
._match
_id
(url
) 
 296         webpage 
= self
._download
_webpage
(url
, display_id
) 
 298             '_type': 'url_transparent', 
 299             'ie_key': 'ThePlatform', 
 300             'url': self
._html
_search
_meta
('twitter:player:stream', webpage
), 
 301             'display_id': display_id
, 
 305 class NBCNewsIE(ThePlatformIE
): 
 306     _VALID_URL 
= r
'(?x)https?://(?:www\.)?(?:nbcnews|today|msnbc)\.com/([^/]+/)*(?:.*-)?(?P<id>[^/?]+)' 
 310             'url': 'http://www.nbcnews.com/watch/nbcnews-com/how-twitter-reacted-to-the-snowden-interview-269389891880', 
 311             'md5': 'cf4bc9e6ce0130f00f545d80ecedd4bf', 
 313                 'id': '269389891880', 
 315                 'title': 'How Twitter Reacted To The Snowden Interview', 
 316                 'description': 'md5:65a0bd5d76fe114f3c2727aa3a81fe64', 
 317                 'timestamp': 1401363060, 
 318                 'upload_date': '20140529', 
 322             'url': 'http://www.nbcnews.com/feature/dateline-full-episodes/full-episode-family-business-n285156', 
 323             'md5': 'fdbf39ab73a72df5896b6234ff98518a', 
 325                 'id': '529953347624', 
 327                 'title': 'FULL EPISODE: Family Business', 
 328                 'description': 'md5:757988edbaae9d7be1d585eb5d55cc04', 
 330             'skip': 'This page is unavailable.', 
 333             'url': 'http://www.nbcnews.com/nightly-news/video/nightly-news-with-brian-williams-full-broadcast-february-4-394064451844', 
 334             'md5': '8eb831eca25bfa7d25ddd83e85946548', 
 336                 'id': '394064451844', 
 338                 'title': 'Nightly News with Brian Williams Full Broadcast (February 4)', 
 339                 'description': 'md5:1c10c1eccbe84a26e5debb4381e2d3c5', 
 340                 'timestamp': 1423104900, 
 341                 'upload_date': '20150205', 
 345             'url': 'http://www.nbcnews.com/business/autos/volkswagen-11-million-vehicles-could-have-suspect-software-emissions-scandal-n431456', 
 346             'md5': '4a8c4cec9e1ded51060bdda36ff0a5c0', 
 350                 'title': "Volkswagen U.S. Chief:  We 'Totally Screwed Up'", 
 351                 'description': 'md5:d22d1281a24f22ea0880741bb4dd6301', 
 352                 'upload_date': '20150922', 
 353                 'timestamp': 1442917800, 
 357             'url': 'http://www.today.com/video/see-the-aurora-borealis-from-space-in-stunning-new-nasa-video-669831235788', 
 358             'md5': '118d7ca3f0bea6534f119c68ef539f71', 
 360                 'id': '669831235788', 
 362                 'title': 'See the aurora borealis from space in stunning new NASA video', 
 363                 'description': 'md5:74752b7358afb99939c5f8bb2d1d04b1', 
 364                 'upload_date': '20160420', 
 365                 'timestamp': 1461152093, 
 369             'url': 'http://www.msnbc.com/all-in-with-chris-hayes/watch/the-chaotic-gop-immigration-vote-314487875924', 
 370             'md5': '6d236bf4f3dddc226633ce6e2c3f814d', 
 372                 'id': '314487875924', 
 374                 'title': 'The chaotic GOP immigration vote', 
 375                 '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.', 
 376                 'thumbnail': r
're:^https?://.*\.jpg$', 
 377                 'timestamp': 1406937606, 
 378                 'upload_date': '20140802', 
 382             'url': 'http://www.nbcnews.com/watch/dateline/full-episode--deadly-betrayal-386250819952', 
 383             'only_matching': True, 
 386             # From http://www.vulture.com/2016/06/letterman-couldnt-care-less-about-late-night.html 
 387             'url': 'http://www.nbcnews.com/widget/video-embed/701714499682', 
 388             'only_matching': True, 
 392     def _real_extract(self
, url
): 
 393         video_id 
= self
._match
_id
(url
) 
 394         webpage 
= self
._download
_webpage
(url
, video_id
) 
 396         data 
= self
._parse
_json
(self
._search
_regex
( 
 397             r
'window\.__data\s*=\s*({.+});', webpage
, 
 398             'bootstrap json'), video_id
, js_to_json
) 
 399         video_data 
= try_get(data
, lambda x
: x
['video']['current'], dict) 
 401             video_data 
= data
['article']['content'][0]['primaryMedia']['video'] 
 402         title 
= video_data
['headline']['primary'] 
 405         for va 
in video_data
.get('videoAssets', []): 
 406             public_url 
= va
.get('publicUrl') 
 409             if '://link.theplatform.com/' in public_url
: 
 410                 public_url 
= update_url_query(public_url
, {'format': 'redirect'}) 
 411             format_id 
= va
.get('format') 
 412             if format_id 
== 'M3U': 
 413                 formats
.extend(self
._extract
_m
3u8_formats
( 
 414                     public_url
, video_id
, 'mp4', 'm3u8_native', 
 415                     m3u8_id
=format_id
, fatal
=False)) 
 417             tbr 
= int_or_none(va
.get('bitrate'), 1000) 
 419                 format_id 
+= '-%d' % tbr
 
 421                 'format_id': format_id
, 
 423                 'width': int_or_none(va
.get('width')), 
 424                 'height': int_or_none(va
.get('height')), 
 428         self
._sort
_formats
(formats
) 
 431         closed_captioning 
= video_data
.get('closedCaptioning') 
 432         if closed_captioning
: 
 433             for cc_url 
in closed_captioning
.values(): 
 436                 subtitles
.setdefault('en', []).append({ 
 443             'description': try_get(video_data
, lambda x
: x
['description']['primary']), 
 444             'thumbnail': try_get(video_data
, lambda x
: x
['primaryImage']['url']['primary']), 
 445             'duration': parse_duration(video_data
.get('duration')), 
 446             'timestamp': unified_timestamp(video_data
.get('datePublished')), 
 448             'subtitles': subtitles
, 
 452 class NBCOlympicsIE(InfoExtractor
): 
 453     IE_NAME 
= 'nbcolympics' 
 454     _VALID_URL 
= r
'https?://www\.nbcolympics\.com/video/(?P<id>[a-z-]+)' 
 457         # Geo-restricted to US 
 458         'url': 'http://www.nbcolympics.com/video/justin-roses-son-leo-was-tears-after-his-dad-won-gold', 
 459         'md5': '54fecf846d05429fbaa18af557ee523a', 
 461             'id': 'WjTBzDXx5AUq', 
 462             'display_id': 'justin-roses-son-leo-was-tears-after-his-dad-won-gold', 
 464             'title': 'Rose\'s son Leo was in tears after his dad won gold', 
 465             'description': 'Olympic gold medalist Justin Rose gets emotional talking to the impact his win in men\'s golf has already had on his children.', 
 466             'timestamp': 1471274964, 
 467             'upload_date': '20160815', 
 468             'uploader': 'NBCU-SPORTS', 
 472     def _real_extract(self
, url
): 
 473         display_id 
= self
._match
_id
(url
) 
 475         webpage 
= self
._download
_webpage
(url
, display_id
) 
 477         drupal_settings 
= self
._parse
_json
(self
._search
_regex
( 
 478             r
'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);', 
 479             webpage
, 'drupal settings'), display_id
) 
 481         iframe_url 
= drupal_settings
['vod']['iframe_url'] 
 482         theplatform_url 
= iframe_url
.replace( 
 483             'vplayer.nbcolympics.com', 'player.theplatform.com') 
 486             '_type': 'url_transparent', 
 487             'url': theplatform_url
, 
 488             'ie_key': ThePlatformIE
.ie_key(), 
 489             'display_id': display_id
, 
 493 class NBCOlympicsStreamIE(AdobePassIE
): 
 494     IE_NAME 
= 'nbcolympics:stream' 
 495     _VALID_URL 
= r
'https?://stream\.nbcolympics\.com/(?P<id>[0-9a-z-]+)' 
 497         'url': 'http://stream.nbcolympics.com/2018-winter-olympics-nbcsn-evening-feb-8', 
 501             'title': 're:Curling, Alpine, Luge [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$', 
 505             'skip_download': True, 
 508     _DATA_URL_TEMPLATE 
= 'http://stream.nbcolympics.com/data/%s_%s.json' 
 510     def _real_extract(self
, url
): 
 511         display_id 
= self
._match
_id
(url
) 
 512         webpage 
= self
._download
_webpage
(url
, display_id
) 
 513         pid 
= self
._search
_regex
(r
'pid\s*=\s*(\d+);', webpage
, 'pid') 
 514         resource 
= self
._search
_regex
( 
 515             r
"resource\s*=\s*'(.+)';", webpage
, 
 516             'resource').replace("' + pid + '", pid
) 
 517         event_config 
= self
._download
_json
( 
 518             self
._DATA
_URL
_TEMPLATE 
% ('event_config', pid
), 
 520         title 
= self
._live
_title
(event_config
['eventTitle']) 
 521         source_url 
= self
._download
_json
( 
 522             self
._DATA
_URL
_TEMPLATE 
% ('live_sources', pid
), 
 523             pid
)['videoSources'][0]['sourceUrl'] 
 524         media_token 
= self
._extract
_mvpd
_auth
( 
 525             url
, pid
, event_config
.get('requestorId', 'NBCOlympics'), resource
) 
 526         formats 
= self
._extract
_m
3u8_formats
(self
._download
_webpage
( 
 527             'http://sp.auth.adobe.com/tvs/v1/sign', pid
, query
={ 
 529                 'mediaToken': base64
.b64encode(media_token
.encode()), 
 530                 'resource': base64
.b64encode(resource
.encode()), 
 533         self
._sort
_formats
(formats
) 
 537             'display_id': display_id
,