mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-06-27 08:58:30 +00:00
Merge ef877e0cdf
into 06c1a8cdff
This commit is contained in:
commit
9a7f0ff79c
@ -2,144 +2,171 @@
|
|||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
|
ExtractorError,
|
||||||
clean_html,
|
clean_html,
|
||||||
float_or_none,
|
|
||||||
int_or_none,
|
int_or_none,
|
||||||
parse_qs,
|
parse_qs,
|
||||||
try_get,
|
str_or_none,
|
||||||
|
try_call,
|
||||||
urlencode_postdata,
|
urlencode_postdata,
|
||||||
)
|
)
|
||||||
|
from ..utils.traversal import require, traverse_obj
|
||||||
|
|
||||||
|
|
||||||
class CiscoLiveBaseIE(InfoExtractor):
|
class CiscoLiveBaseIE(InfoExtractor):
|
||||||
# These appear to be constant across all Cisco Live presentations
|
_BASE_URL = 'https://www.ciscolive.com'
|
||||||
# and are not tied to any user session or event
|
_HEADERS = {
|
||||||
RAINFOCUS_API_URL = 'https://events.rainfocus.com/api/%s'
|
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
|
||||||
RAINFOCUS_API_PROFILE_ID = 'Na3vqYdAlJFSxhYTYQGuMbpafMqftalz'
|
'Rfapiprofileid': 'HEedDIRblcZk7Ld3KHm1T0VUtZog9eG9',
|
||||||
RAINFOCUS_WIDGET_ID = 'n6l4Lo05R8fiy3RpUBm447dZN8uNWoye'
|
'Rfwidgetid': 'M7n14I8sz0pklW1vybwVRdKrgdREj8sR',
|
||||||
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/5647924234001/SyK2FdqjM_default/index.html?videoId=%s'
|
|
||||||
|
|
||||||
HEADERS = {
|
|
||||||
'Origin': 'https://ciscolive.cisco.com',
|
|
||||||
'rfApiProfileId': RAINFOCUS_API_PROFILE_ID,
|
|
||||||
'rfWidgetId': RAINFOCUS_WIDGET_ID,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
def _call_api(self, ep, rf_id, query, referrer, note=None):
|
def _call_api(self, endpoint, payload, doseq=False, **kwargs):
|
||||||
headers = self.HEADERS.copy()
|
api_resp = self._download_json(
|
||||||
headers['Referer'] = referrer
|
f'https://events.rainfocus.com/api/{endpoint}', payload.get('id'),
|
||||||
return self._download_json(
|
headers=self._HEADERS, data=urlencode_postdata(payload, doseq=doseq), **kwargs)
|
||||||
self.RAINFOCUS_API_URL % ep, rf_id, note=note,
|
if traverse_obj(api_resp, 'responseCode') != '0':
|
||||||
data=urlencode_postdata(query), headers=headers)
|
msg = traverse_obj(api_resp, ('responseMessage', {str}, filter))
|
||||||
|
raise ExtractorError(
|
||||||
|
msg or 'API returned an error response', expected=bool(msg))
|
||||||
|
|
||||||
def _parse_rf_item(self, rf_item):
|
return api_resp
|
||||||
event_name = rf_item.get('eventName')
|
|
||||||
title = rf_item['title']
|
|
||||||
description = clean_html(rf_item.get('abstract'))
|
|
||||||
presenter_name = try_get(rf_item, lambda x: x['participants'][0]['fullName'])
|
|
||||||
bc_id = rf_item['videos'][0]['url']
|
|
||||||
bc_url = self.BRIGHTCOVE_URL_TEMPLATE % bc_id
|
|
||||||
duration = float_or_none(try_get(rf_item, lambda x: x['times'][0]['length']))
|
|
||||||
location = try_get(rf_item, lambda x: x['times'][0]['room'])
|
|
||||||
|
|
||||||
if duration:
|
|
||||||
duration = duration * 60
|
|
||||||
|
|
||||||
return {
|
|
||||||
'_type': 'url_transparent',
|
|
||||||
'url': bc_url,
|
|
||||||
'ie_key': 'BrightcoveNew',
|
|
||||||
'title': title,
|
|
||||||
'description': description,
|
|
||||||
'duration': duration,
|
|
||||||
'creator': presenter_name,
|
|
||||||
'location': location,
|
|
||||||
'series': event_name,
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
class CiscoLiveSessionIE(CiscoLiveBaseIE):
|
class CiscoLiveSessionIE(CiscoLiveBaseIE):
|
||||||
_VALID_URL = r'https?://(?:www\.)?ciscolive(?:\.cisco)?\.com/[^#]*#/session/(?P<id>[^/?&]+)'
|
IE_NAME = 'ciscolive:session'
|
||||||
|
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/5647924234001/SyK2FdqjM_default/index.html?videoId=%s'
|
||||||
|
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?ciscolive\.com/on-demand/on-demand-library\.html[^#]*#/(?P<type>session|video)/(?P<id>[^/?&]+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://ciscolive.cisco.com/on-demand-library/?#/session/1423353499155001FoSs',
|
'url': 'https://www.ciscolive.com/on-demand/on-demand-library.html#/session/1749591952508001pGUf',
|
||||||
'md5': 'c98acf395ed9c9f766941c70f5352e22',
|
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '5803694304001',
|
'id': '6374109944112',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': '13 Smart Automations to Monitor Your Cisco IOS Network',
|
'title': 'AI Changes Everything: A New Blueprint for Network Security, Zero Trust, and the SOC - KDDSEC-1000',
|
||||||
'description': 'md5:ec4a436019e09a918dec17714803f7cc',
|
'creators': 'count:4',
|
||||||
'timestamp': 1530305395,
|
'description': 'md5:70ee6edf45c8221d7e9346426ae25fb0',
|
||||||
'upload_date': '20180629',
|
'display_id': '1749591952508001pGUf',
|
||||||
|
'duration': 2921.387,
|
||||||
|
'series': 'Cisco Live On Demand',
|
||||||
|
'series_id': '1749591952508001pGUf',
|
||||||
|
'thumbnail': r're:https?://cf-images\.us-east-1\.prod\.boltdns\.net/.+\.jpg',
|
||||||
|
'timestamp': 1749602136,
|
||||||
|
'upload_date': '20250611',
|
||||||
'uploader_id': '5647924234001',
|
'uploader_id': '5647924234001',
|
||||||
'location': '16B Mezz.',
|
|
||||||
},
|
},
|
||||||
|
'add_ie': ['BrightcoveNew'],
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://www.ciscolive.com/global/on-demand-library.html?search.event=ciscoliveemea2019#/session/15361595531500013WOU',
|
'url': 'https://www.ciscolive.com/on-demand/on-demand-library.html#/video/1749603837855001eWhB',
|
||||||
'only_matching': True,
|
'info_dict': {
|
||||||
|
'id': '6374109944112',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'AI Changes Everything: A New Blueprint for Network Security, Zero Trust, and the SOC - KDDSEC-1000',
|
||||||
|
'creators': 'count:4',
|
||||||
|
'description': 'md5:70ee6edf45c8221d7e9346426ae25fb0',
|
||||||
|
'display_id': '1749603837855001eWhB',
|
||||||
|
'duration': 2921.387,
|
||||||
|
'series': 'Cisco Live On Demand',
|
||||||
|
'series_id': '1749591952508001pGUf',
|
||||||
|
'thumbnail': r're:https?://cf-images\.us-east-1\.prod\.boltdns\.net/.+\.jpg',
|
||||||
|
'timestamp': 1749602136,
|
||||||
|
'upload_date': '20250611',
|
||||||
|
'uploader_id': '5647924234001',
|
||||||
|
},
|
||||||
|
'add_ie': ['BrightcoveNew'],
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://www.ciscolive.com/global/on-demand-library.html?#/session/1490051371645001kNaS',
|
'url': 'https://www.ciscolive.com/on-demand/on-demand-library.html?search.sessiontype=Keynote#/session/1748956425383001aEIK',
|
||||||
'only_matching': True,
|
'info_dict': {
|
||||||
|
'id': '6373626841112',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Keynote: Innovation in Action - KEYGEN-1002',
|
||||||
|
'creators': 'count:6',
|
||||||
|
'description': 'md5:3a1d82ca9e4e3505e251c251d3509cc5',
|
||||||
|
'display_id': '1748956425383001aEIK',
|
||||||
|
'duration': 4405.739,
|
||||||
|
'series': 'Cisco Live On Demand',
|
||||||
|
'series_id': '1748956425383001aEIK',
|
||||||
|
'thumbnail': r're:https?://cf-images\.us-east-1\.prod\.boltdns\.net/.+\.jpg',
|
||||||
|
'timestamp': 1748553118,
|
||||||
|
'upload_date': '20250529',
|
||||||
|
'uploader_id': '5647924234001',
|
||||||
|
},
|
||||||
|
'add_ie': ['BrightcoveNew'],
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
rf_id = self._match_id(url)
|
url_type, display_id = self._match_valid_url(url).group('type', 'id')
|
||||||
rf_result = self._call_api('session', rf_id, {'id': rf_id}, url)
|
if url_type == 'video':
|
||||||
return self._parse_rf_item(rf_result['items'][0])
|
auth_token = try_call(lambda: self._get_cookies(self._BASE_URL)['rfjwt'].value)
|
||||||
|
if not auth_token:
|
||||||
|
self.raise_login_required()
|
||||||
|
|
||||||
|
self._HEADERS['Rfauthtoken'] = auth_token
|
||||||
|
file = self._call_api('file', {'id': display_id})
|
||||||
|
rf_id = traverse_obj(file, ('items', 'file', 'rainfocusId', {str}))
|
||||||
|
else:
|
||||||
|
rf_id = display_id
|
||||||
|
|
||||||
|
return {
|
||||||
|
'_type': 'url_transparent',
|
||||||
|
'ie_key': 'BrightcoveNew',
|
||||||
|
'display_id': display_id,
|
||||||
|
**traverse_obj(self._call_api('session', {'id': rf_id}), ('items', ..., {
|
||||||
|
'title': ('title', {clean_html}),
|
||||||
|
'creators': ('participants', ..., 'fullName', {str}),
|
||||||
|
'description': ('abstract', {clean_html}),
|
||||||
|
'series': ('eventName', {clean_html}),
|
||||||
|
'series_id': ('sessionID', {str}),
|
||||||
|
'url': ('videos', ..., 'url', {str_or_none},
|
||||||
|
{lambda x: self.BRIGHTCOVE_URL_TEMPLATE % x}, any, {require('brightcove video ID')}),
|
||||||
|
}, any)),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
class CiscoLiveSearchIE(CiscoLiveBaseIE):
|
class CiscoLiveSearchIE(CiscoLiveBaseIE):
|
||||||
_VALID_URL = r'https?://(?:www\.)?ciscolive(?:\.cisco)?\.com/(?:global/)?on-demand-library(?:\.html|/)'
|
IE_NAME = 'ciscolive:search'
|
||||||
|
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?ciscolive\.com/on-demand/on-demand-library\.html\?[^#]+#/(?!session|video)[^/?#]*$'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://ciscolive.cisco.com/on-demand-library/?search.event=ciscoliveus2018&search.technicallevel=scpsSkillLevel_aintroductory&search.focus=scpsSessionFocus_designAndDeployment#/',
|
'url': 'https://www.ciscolive.com/on-demand/on-demand-library.html?search.event=1737762187215001jsy4#/',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'title': 'Search query',
|
'id': 'search',
|
||||||
},
|
},
|
||||||
'playlist_count': 5,
|
'playlist_count': 500,
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://ciscolive.cisco.com/on-demand-library/?search.technology=scpsTechnology_applicationDevelopment&search.technology=scpsTechnology_ipv6&search.focus=scpsSessionFocus_troubleshootingTroubleshooting#/',
|
'url': 'https://www.ciscolive.com/on-demand/on-demand-library.html?search.event=1707169032930001EEu2&search.technology=1538390420915002wPJx#/',
|
||||||
'only_matching': True,
|
'info_dict': {
|
||||||
}, {
|
'id': 'search',
|
||||||
'url': 'https://www.ciscolive.com/global/on-demand-library.html?search.technicallevel=scpsSkillLevel_aintroductory&search.event=ciscoliveemea2019&search.technology=scpsTechnology_dataCenter&search.focus=scpsSessionFocus_bestPractices#/',
|
},
|
||||||
'only_matching': True,
|
'playlist_count': 34,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
@classmethod
|
def _entries(self, payload):
|
||||||
def suitable(cls, url):
|
from_val = 0
|
||||||
return False if CiscoLiveSessionIE.suitable(url) else super().suitable(url)
|
|
||||||
|
|
||||||
@staticmethod
|
for page in itertools.count(1):
|
||||||
def _check_bc_id_exists(rf_item):
|
search = self._call_api(
|
||||||
return int_or_none(try_get(rf_item, lambda x: x['videos'][0]['url'])) is not None
|
'search', {**payload, 'from': from_val},
|
||||||
|
doseq=True, note=f'Downloading page {page}')
|
||||||
|
if not traverse_obj(search, 'sectionList'):
|
||||||
|
return
|
||||||
|
|
||||||
def _entries(self, query, url):
|
yield from [self.url_result(
|
||||||
query['size'] = 50
|
f'{self._BASE_URL}/on-demand/on-demand-library.html#/session/{session_id}', CiscoLiveSessionIE)
|
||||||
query['from'] = 0
|
for session_id in traverse_obj(search, (
|
||||||
for page_num in itertools.count(1):
|
'sectionList', ..., 'items', ..., 'sessionID', {str_or_none}, filter, all, filter))]
|
||||||
results = self._call_api(
|
|
||||||
'search', None, query, url,
|
from_val += int_or_none(payload['size'])
|
||||||
f'Downloading search JSON page {page_num}')
|
if from_val >= min(500, traverse_obj(search, (
|
||||||
sl = try_get(results, lambda x: x['sectionList'][0], dict)
|
'sectionList', ..., 'total', {int_or_none}, any,
|
||||||
if sl:
|
))):
|
||||||
results = sl
|
|
||||||
items = results.get('items')
|
|
||||||
if not items or not isinstance(items, list):
|
|
||||||
break
|
break
|
||||||
for item in items:
|
|
||||||
if not isinstance(item, dict):
|
|
||||||
continue
|
|
||||||
if not self._check_bc_id_exists(item):
|
|
||||||
continue
|
|
||||||
yield self._parse_rf_item(item)
|
|
||||||
size = int_or_none(results.get('size'))
|
|
||||||
if size is not None:
|
|
||||||
query['size'] = size
|
|
||||||
total = int_or_none(results.get('total'))
|
|
||||||
if total is not None and query['from'] + query['size'] > total:
|
|
||||||
break
|
|
||||||
query['from'] += query['size']
|
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
query = parse_qs(url)
|
payload = {
|
||||||
query['type'] = 'session'
|
'size': '50',
|
||||||
return self.playlist_result(
|
'type': 'session',
|
||||||
self._entries(query, url), playlist_title='Search query')
|
**parse_qs(url),
|
||||||
|
}
|
||||||
|
|
||||||
|
return self.playlist_result(self._entries(payload), 'search')
|
||||||
|
Loading…
Reference in New Issue
Block a user