|
@@ -1,6 +1,7 @@
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
import re
|
|
|
+import base64
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
from .theplatform import ThePlatformIE
|
|
@@ -358,6 +359,7 @@ class NBCNewsIE(ThePlatformIE):
|
|
|
|
|
|
|
|
|
class NBCOlympicsIE(InfoExtractor):
|
|
|
+ IE_NAME = 'nbcolympics'
|
|
|
_VALID_URL = r'https?://www\.nbcolympics\.com/video/(?P<id>[a-z-]+)'
|
|
|
|
|
|
_TEST = {
|
|
@@ -395,3 +397,54 @@ class NBCOlympicsIE(InfoExtractor):
|
|
|
'ie_key': ThePlatformIE.ie_key(),
|
|
|
'display_id': display_id,
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+class NBCOlympicsStreamIE(AdobePassIE):
|
|
|
+ IE_NAME = 'nbcolympics:stream'
|
|
|
+ _VALID_URL = r'https?://stream\.nbcolympics\.com/(?P<id>[0-9a-z-]+)'
|
|
|
+ _TEST = {
|
|
|
+ 'url': 'http://stream.nbcolympics.com/2018-winter-olympics-nbcsn-evening-feb-8',
|
|
|
+ 'info_dict': {
|
|
|
+ 'id': '203493',
|
|
|
+ 'ext': 'mp4',
|
|
|
+ 'title': 're:Curling, Alpine, Luge [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
|
|
|
+ },
|
|
|
+ 'params': {
|
|
|
+ # m3u8 download
|
|
|
+ 'skip_download': True,
|
|
|
+ },
|
|
|
+ }
|
|
|
+ _DATA_URL_TEMPLATE = 'http://stream.nbcolympics.com/data/%s_%s.json'
|
|
|
+
|
|
|
+ def _real_extract(self, url):
|
|
|
+ display_id = self._match_id(url)
|
|
|
+ webpage = self._download_webpage(url, display_id)
|
|
|
+ pid = self._search_regex(r'pid\s*=\s*(\d+);', webpage, 'pid')
|
|
|
+ resource = self._search_regex(
|
|
|
+ r"resource\s*=\s*'(.+)';", webpage,
|
|
|
+ 'resource').replace("' + pid + '", pid)
|
|
|
+ event_config = self._download_json(
|
|
|
+ self._DATA_URL_TEMPLATE % ('event_config', pid),
|
|
|
+ pid)['eventConfig']
|
|
|
+ title = self._live_title(event_config['eventTitle'])
|
|
|
+ source_url = self._download_json(
|
|
|
+ self._DATA_URL_TEMPLATE % ('live_sources', pid),
|
|
|
+ pid)['videoSources'][0]['sourceUrl']
|
|
|
+ media_token = self._extract_mvpd_auth(
|
|
|
+ url, pid, event_config.get('requestorId', 'NBCOlympics'), resource)
|
|
|
+ formats = self._extract_m3u8_formats(self._download_webpage(
|
|
|
+ 'http://sp.auth.adobe.com/tvs/v1/sign', pid, query={
|
|
|
+ 'cdn': 'akamai',
|
|
|
+ 'mediaToken': base64.b64encode(media_token.encode()),
|
|
|
+ 'resource': base64.b64encode(resource.encode()),
|
|
|
+ 'url': source_url,
|
|
|
+ }), pid, 'mp4')
|
|
|
+ self._sort_formats(formats)
|
|
|
+
|
|
|
+ return {
|
|
|
+ 'id': pid,
|
|
|
+ 'display_id': display_id,
|
|
|
+ 'title': title,
|
|
|
+ 'formats': formats,
|
|
|
+ 'is_live': True,
|
|
|
+ }
|