2016-06-19 22:40:00 +00:00
|
|
|
from .theplatform import ThePlatformFeedIE
|
2015-11-21 16:18:17 +00:00
|
|
|
from ..utils import (
|
2018-03-19 17:27:39 +00:00
|
|
|
ExtractorError,
|
2016-04-01 06:33:37 +00:00
|
|
|
int_or_none,
|
|
|
|
find_xpath_attr,
|
2016-09-22 18:27:57 +00:00
|
|
|
xpath_element,
|
|
|
|
xpath_text,
|
|
|
|
update_url_query,
|
2021-08-09 20:24:50 +00:00
|
|
|
url_or_none,
|
2015-11-21 16:18:17 +00:00
|
|
|
)
|
2013-12-16 02:53:43 +00:00
|
|
|
|
|
|
|
|
2016-06-19 22:40:00 +00:00
|
|
|
class CBSBaseIE(ThePlatformFeedIE):
|
2016-04-01 09:12:29 +00:00
|
|
|
def _parse_smil_subtitles(self, smil, namespace=None, subtitles_lang='en'):
|
2019-04-13 16:00:24 +00:00
|
|
|
subtitles = {}
|
|
|
|
for k, ext in [('sMPTE-TTCCURL', 'tt'), ('ClosedCaptionURL', 'ttml'), ('webVTTCaptionURL', 'vtt')]:
|
|
|
|
cc_e = find_xpath_attr(smil, self._xpath_ns('.//param', namespace), 'name', k)
|
|
|
|
if cc_e is not None:
|
|
|
|
cc_url = cc_e.get('value')
|
|
|
|
if cc_url:
|
|
|
|
subtitles.setdefault(subtitles_lang, []).append({
|
|
|
|
'ext': ext,
|
|
|
|
'url': cc_url,
|
|
|
|
})
|
|
|
|
return subtitles
|
2016-04-01 09:12:29 +00:00
|
|
|
|
2021-08-09 20:24:50 +00:00
|
|
|
def _extract_common_video_info(self, content_id, asset_types, mpx_acc, extra_info):
|
|
|
|
tp_path = 'dJ5BDC/media/guid/%d/%s' % (mpx_acc, content_id)
|
|
|
|
tp_release_url = f'https://link.theplatform.com/s/{tp_path}'
|
|
|
|
info = self._extract_theplatform_metadata(tp_path, content_id)
|
|
|
|
|
|
|
|
formats, subtitles = [], {}
|
|
|
|
last_e = None
|
|
|
|
for asset_type, query in asset_types.items():
|
|
|
|
try:
|
|
|
|
tp_formats, tp_subtitles = self._extract_theplatform_smil(
|
|
|
|
update_url_query(tp_release_url, query), content_id,
|
|
|
|
'Downloading %s SMIL data' % asset_type)
|
|
|
|
except ExtractorError as e:
|
|
|
|
last_e = e
|
|
|
|
if asset_type != 'fallback':
|
|
|
|
continue
|
|
|
|
query['formats'] = '' # blank query to check if expired
|
|
|
|
try:
|
|
|
|
tp_formats, tp_subtitles = self._extract_theplatform_smil(
|
|
|
|
update_url_query(tp_release_url, query), content_id,
|
|
|
|
'Downloading %s SMIL data, trying again with another format' % asset_type)
|
|
|
|
except ExtractorError as e:
|
|
|
|
last_e = e
|
|
|
|
continue
|
|
|
|
formats.extend(tp_formats)
|
|
|
|
subtitles = self._merge_subtitles(subtitles, tp_subtitles)
|
|
|
|
if last_e and not formats:
|
|
|
|
self.raise_no_formats(last_e, True, content_id)
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
|
|
|
extra_info.update({
|
|
|
|
'id': content_id,
|
|
|
|
'formats': formats,
|
|
|
|
'subtitles': subtitles,
|
|
|
|
})
|
|
|
|
info.update({k: v for k, v in extra_info.items() if v is not None})
|
|
|
|
return info
|
|
|
|
|
|
|
|
def _extract_video_info(self, *args, **kwargs):
|
|
|
|
# Extract assets + metadata and call _extract_common_video_info
|
|
|
|
raise NotImplementedError('This method must be implemented by subclasses')
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
return self._extract_video_info(self._match_id(url))
|
|
|
|
|
2016-04-01 09:12:29 +00:00
|
|
|
|
|
|
|
class CBSIE(CBSBaseIE):
|
2021-05-01 13:11:37 +00:00
|
|
|
_VALID_URL = r'''(?x)
|
|
|
|
(?:
|
|
|
|
cbs:|
|
|
|
|
https?://(?:www\.)?(?:
|
2022-03-18 09:49:31 +00:00
|
|
|
cbs\.com/(?:shows|movies)/(?:video|[^/]+/video|[^/]+)/|
|
2021-05-01 13:11:37 +00:00
|
|
|
colbertlateshow\.com/(?:video|podcasts)/)
|
|
|
|
)(?P<id>[\w-]+)'''
|
2013-12-16 02:53:43 +00:00
|
|
|
|
2021-08-09 20:24:50 +00:00
|
|
|
# All tests are blocked outside US
|
2014-07-22 14:56:42 +00:00
|
|
|
_TESTS = [{
|
2022-03-18 09:49:31 +00:00
|
|
|
'url': 'https://www.cbs.com/shows/video/xrUyNLtl9wd8D_RWWAg9NU2F_V6QpB3R/',
|
2014-07-22 15:34:34 +00:00
|
|
|
'info_dict': {
|
2022-03-18 09:49:31 +00:00
|
|
|
'id': 'xrUyNLtl9wd8D_RWWAg9NU2F_V6QpB3R',
|
2016-04-01 06:33:37 +00:00
|
|
|
'ext': 'mp4',
|
2022-03-18 09:49:31 +00:00
|
|
|
'title': 'Tough As Nails - Dreams Never Die',
|
|
|
|
'description': 'md5:a3535a62531cdd52b0364248a2c1ae33',
|
|
|
|
'duration': 2588,
|
|
|
|
'timestamp': 1639015200,
|
|
|
|
'upload_date': '20211209',
|
2016-04-01 17:06:11 +00:00
|
|
|
'uploader': 'CBSI-NEW',
|
2013-12-16 02:53:43 +00:00
|
|
|
},
|
2016-08-20 12:25:32 +00:00
|
|
|
'params': {
|
|
|
|
# m3u8 download
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
2021-08-02 02:16:12 +00:00
|
|
|
}, {
|
2022-03-18 09:49:31 +00:00
|
|
|
'url': 'https://www.cbs.com/shows/video/sZH1MGgomIosZgxGJ1l263MFq16oMtW1/',
|
2021-08-02 02:16:12 +00:00
|
|
|
'info_dict': {
|
2022-03-18 09:49:31 +00:00
|
|
|
'id': 'sZH1MGgomIosZgxGJ1l263MFq16oMtW1',
|
|
|
|
'title': 'The Late Show - 3/16/22 (Michael Buble, Rose Matafeo)',
|
|
|
|
'timestamp': 1647488100,
|
|
|
|
'description': 'md5:d0e6ec23c544b7fa8e39a8e6844d2439',
|
2021-08-02 02:16:12 +00:00
|
|
|
'uploader': 'CBSI-NEW',
|
2022-03-18 09:49:31 +00:00
|
|
|
'upload_date': '20220317',
|
2021-08-02 02:16:12 +00:00
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'ignore_no_formats_error': True,
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
|
|
|
'expected_warnings': [
|
|
|
|
'This content expired on', 'No video formats found', 'Requested format is not available'],
|
2015-06-09 15:23:53 +00:00
|
|
|
}, {
|
|
|
|
'url': 'http://colbertlateshow.com/video/8GmB0oY0McANFvp2aEffk9jZZZ2YyXxy/the-colbeard/',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
2015-06-09 15:39:45 +00:00
|
|
|
'url': 'http://www.colbertlateshow.com/podcasts/dYSwjqPs_X1tvbV_P2FcPWRa_qT6akTC/in-the-bad-room-with-stephen/',
|
2015-06-09 15:23:53 +00:00
|
|
|
'only_matching': True,
|
2014-07-22 14:56:42 +00:00
|
|
|
}]
|
2016-08-20 12:25:32 +00:00
|
|
|
|
2017-04-27 18:23:52 +00:00
|
|
|
def _extract_video_info(self, content_id, site='cbs', mpx_acc=2198311517):
|
2016-09-22 18:27:57 +00:00
|
|
|
items_data = self._download_xml(
|
2021-03-04 14:50:07 +00:00
|
|
|
'https://can.cbs.com/thunder/player/videoPlayerService.php',
|
2017-04-27 18:23:52 +00:00
|
|
|
content_id, query={'partner': site, 'contentId': content_id})
|
2016-09-22 18:27:57 +00:00
|
|
|
video_data = xpath_element(items_data, './/item')
|
2021-01-23 02:00:08 +00:00
|
|
|
title = xpath_text(video_data, 'videoTitle', 'title') or xpath_text(video_data, 'videotitle', 'title')
|
2016-09-22 18:27:57 +00:00
|
|
|
|
2021-08-09 20:24:50 +00:00
|
|
|
asset_types = {}
|
2021-09-23 22:39:03 +00:00
|
|
|
has_drm = False
|
2016-09-22 18:27:57 +00:00
|
|
|
for item in items_data.findall('.//item'):
|
|
|
|
asset_type = xpath_text(item, 'assetType')
|
|
|
|
query = {
|
|
|
|
'mbr': 'true',
|
|
|
|
'assetTypes': asset_type,
|
|
|
|
}
|
2021-08-02 02:16:12 +00:00
|
|
|
if not asset_type:
|
|
|
|
# fallback for content_ids that videoPlayerService doesn't return anything for
|
|
|
|
asset_type = 'fallback'
|
|
|
|
query['formats'] = 'M3U+none,MPEG4,M3U+appleHlsEncryption,MP3'
|
|
|
|
del query['assetTypes']
|
2021-08-09 20:24:50 +00:00
|
|
|
if asset_type in asset_types:
|
2021-08-02 02:16:12 +00:00
|
|
|
continue
|
|
|
|
elif any(excluded in asset_type for excluded in ('HLS_FPS', 'DASH_CENC', 'OnceURL')):
|
2021-09-23 22:39:03 +00:00
|
|
|
if 'DASH_CENC' in asset_type:
|
|
|
|
has_drm = True
|
2021-08-02 02:16:12 +00:00
|
|
|
continue
|
|
|
|
if asset_type.startswith('HLS') or 'StreamPack' in asset_type:
|
2016-09-22 18:27:57 +00:00
|
|
|
query['formats'] = 'MPEG4,M3U'
|
|
|
|
elif asset_type in ('RTMP', 'WIFI', '3G'):
|
|
|
|
query['formats'] = 'MPEG4,FLV'
|
2021-08-09 20:24:50 +00:00
|
|
|
asset_types[asset_type] = query
|
2016-09-22 18:27:57 +00:00
|
|
|
|
2021-09-23 22:39:03 +00:00
|
|
|
if not asset_types and has_drm:
|
|
|
|
self.report_drm(content_id)
|
|
|
|
|
2021-08-09 20:24:50 +00:00
|
|
|
return self._extract_common_video_info(content_id, asset_types, mpx_acc, extra_info={
|
|
|
|
'title': title,
|
|
|
|
'series': xpath_text(video_data, 'seriesTitle'),
|
|
|
|
'season_number': int_or_none(xpath_text(video_data, 'seasonNumber')),
|
|
|
|
'episode_number': int_or_none(xpath_text(video_data, 'episodeNumber')),
|
|
|
|
'duration': int_or_none(xpath_text(video_data, 'videoLength'), 1000),
|
|
|
|
'thumbnail': url_or_none(xpath_text(video_data, 'previewImageURL')),
|
2016-08-20 12:25:32 +00:00
|
|
|
})
|