1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00
This commit is contained in:
dirkf 2024-04-16 15:13:52 -07:00 committed by GitHub
commit ca6f85e396
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 225 additions and 112 deletions

View file

@ -17,6 +17,7 @@ from ..utils import (
intlist_to_bytes, intlist_to_bytes,
int_or_none, int_or_none,
strip_jsonp, strip_jsonp,
try_get,
unescapeHTML, unescapeHTML,
unsmuggle_url, unsmuggle_url,
) )
@ -203,23 +204,29 @@ class AnvatoIE(InfoExtractor):
'telemundo': 'anvato_mcp_telemundo_web_prod_c5278d51ad46fda4b6ca3d0ea44a7846a054f582' 'telemundo': 'anvato_mcp_telemundo_web_prod_c5278d51ad46fda4b6ca3d0ea44a7846a054f582'
} }
_API_PREFIX = 'https://tkx.mp.lura.live/rest/v2/'
_API_KEY = '3hwbSuqqT690uxjNYBktSQpa5ZrpYYR0Iofx7NcJHyA' _API_KEY = '3hwbSuqqT690uxjNYBktSQpa5ZrpYYR0Iofx7NcJHyA'
_ANVP_RE = r'<script[^>]+\bdata-anvp\s*=\s*(["\'])(?P<anvp>(?:(?!\1).)+)\1' _ANVP_RE = (
r'<script[^>]*>[^<]*?\bAnvatoPlayer\s*\(\s*["\w]+\s*\)\s*\.\s*init\s*\(\s*(?P<anvp>{[^<]+?})\s*\);',
r'<script[^>]+\bdata-anvp\s*=\s*(["\'])(?P<anvp>(?:(?!\1).)+)\1')
_AUTH_KEY = b'\x31\xc2\x42\x84\x9e\x73\xa0\xce' _AUTH_KEY = b'\x31\xc2\x42\x84\x9e\x73\xa0\xce'
_TESTS = [{ _TESTS = [{
# from https://www.boston25news.com/news/watch-humpback-whale-breaches-right-next-to-fishing-boat-near-nh/817484874 # from https://www.boston25news.com/news/watch-humpback-whale-breaches-right-next-to-fishing-boat-near-nh/817484874
'url': 'anvato:8v9BEynrwx8EFLYpgfOWcG1qJqyXKlRM:4465496', 'url': 'anvato:8v9BEynrwx8EFLYpgfOWcG1qJqyXKlRM:4465496',
'only_matching': True,
}, {
# from https://miami.cbslocal.com/2022/02/12/no-appetite-for-new-miami-restaurant-glorifying-castro-communism/
'url': 'anvato:5VD6Eyd6djewbCmNwBFnsJj17YAvGRwl:6197559', # 8v9BEynrwx8EFLYpgfOWcG1qJqyXKlRM:4465496',
'info_dict': { 'info_dict': {
'id': '4465496', 'id': '6197559',
'ext': 'mp4', 'ext': 'mp4',
'title': 'VIDEO: Humpback whale breaches right next to NH boat', 'upload_date': '20220209',
'description': 'VIDEO: Humpback whale breaches right next to NH boat. Footage courtesy: Zach Fahey.', 'uploader': 'CBS',
'duration': 22, 'description': 'CBS4\'s Joel Waldman has more on the backlash Cafe Habana is receiving.',
'timestamp': 1534855680, 'timestamp': 1644381300,
'upload_date': '20180821', 'title': 'Miamians Want No Part Of New Restaurant Set To Open In Brickell That Glorifies Fidel Castro & Communism',
'uploader': 'ANV',
}, },
'params': { 'params': {
'skip_download': True, 'skip_download': True,
@ -228,46 +235,85 @@ class AnvatoIE(InfoExtractor):
# from https://sanfrancisco.cbslocal.com/2016/06/17/source-oakland-cop-on-leave-for-having-girlfriend-help-with-police-reports/ # from https://sanfrancisco.cbslocal.com/2016/06/17/source-oakland-cop-on-leave-for-having-girlfriend-help-with-police-reports/
'url': 'anvato:DVzl9QRzox3ZZsP9bNu5Li3X7obQOnqP:3417601', 'url': 'anvato:DVzl9QRzox3ZZsP9bNu5Li3X7obQOnqP:3417601',
'only_matching': True, 'only_matching': True,
}, {
# from https://sanfrancisco.cbslocal.com/2022/02/16/san-francisco-voters-recall-embattled-school-board-members/
'url': 'anvato:5VD6Eyd6djewbCmNwBFnsJj17YAvGRwl:6201051',
'info_dict': {
'id': '6201051',
'ext': 'mp4',
'upload_date': '20220216',
'uploader': 'CBS',
'description': 'Voters were successful in their high-profile effort to recall three San Francisco school board members. Anne Makovec reports.',
'timestamp': 1645043880,
'title': 'Voters Recall San Francisco School Board Members',
},
'params': {
'skip_download': True,
},
}] }]
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
super(AnvatoIE, self).__init__(*args, **kwargs) super(AnvatoIE, self).__init__(*args, **kwargs)
self.__server_time = None self.__server_time = None
def _server_time(self, access_key, video_id): def _server_time(self, access_key, video_id, server_url=None):
if self.__server_time is not None: if self.__server_time is not None:
return self.__server_time return self.__server_time
if not server_url:
server_url = self._API_PREFIX + 'server_time?anvack={ANVACK}'
self.__server_time = int(self._download_json( self.__server_time = int(self._download_json(
self._api_prefix(access_key) + 'server_time?anvack=' + access_key, video_id, server_url.format(ANVACK=access_key), video_id,
note='Fetching server time')['server_time']) note='Fetching server time')['server_time'])
return self.__server_time return self.__server_time
def _api_prefix(self, access_key):
return 'https://tkx2-%s.anvato.net/rest/v2/' % ('prod' if 'prod' in access_key else 'stage')
def _get_video_json(self, access_key, video_id): def _get_video_json(self, access_key, video_id):
# See et() in anvplayer.min.js, which is an alias of getVideoJSON()
video_data_url = self._api_prefix(access_key) + 'mcp/video/%s?anvack=%s' % (video_id, access_key) def fix_template_vars(template):
server_time = self._server_time(access_key, video_id) return re.sub(r'\{(\{\w+})}', r'\1', template)
# https://access.mp.lura.live/anvacks/5VD6Eyd6djewbCmNwBFnsJj17YAvGRwl?apikey=3hwbSuqqT690uxjNYBktSQpa5ZrpYYR0Iofx7NcJHyA
access_info = self._download_json(
'https://access.mp.lura.live/anvacks/%s?apikey=%s'
% (access_key, self._API_KEY),
video_id, note='Downloading access details')
server_time_url = try_get(access_info, lambda x: x['api']['time'])
server_time_url = (
server_time_url
and fix_template_vars(server_time_url).format(ANVACK=access_key))
server_time = self._server_time(access_key, video_id, server_time_url)
video_data_url = access_info['api'].get('video')
if not video_data_url:
# use special knowledge
video_data_url = self._API_PREFIX + 'mcp/video/{{VIDEO_ID}}?anvack={{ANVACK}}'
video_data_url = fix_template_vars(video_data_url).format(ANVACK=access_key, VIDEO_ID=video_id)
input_data = '%d~%s~%s' % (server_time, md5_text(video_data_url), md5_text(server_time)) input_data = '%d~%s~%s' % (server_time, md5_text(video_data_url), md5_text(server_time))
auth_secret = intlist_to_bytes(aes_encrypt( auth_secret = intlist_to_bytes(aes_encrypt(
bytes_to_intlist(input_data[:64]), bytes_to_intlist(self._AUTH_KEY))) bytes_to_intlist(input_data[:64]), bytes_to_intlist(self._AUTH_KEY)))
video_data_url += '&X-Anvato-Adst-Auth=' + base64.b64encode(auth_secret).decode('ascii')
anvrid = md5_text(time.time() * 1000 * random.random())[:30] anvrid = md5_text(time.time() * 1000 * random.random())[:30]
query = {
'X-Anvato-Adst-Auth': base64.b64encode(auth_secret).decode('ascii'),
'rtyp': 'fp',
}
api = { api = {
'anvrid': anvrid, 'anvrid': anvrid,
'anvts': server_time, 'anvts': server_time,
'anvstk2': 'default',
} }
api['anvstk'] = md5_text('%s|%s|%d|%s' % (
access_key, anvrid, server_time,
self._ANVACK_TABLE.get(access_key, self._API_KEY)))
return self._download_json( return self._download_json(
video_data_url, video_id, transform_source=strip_jsonp, video_data_url, video_id, transform_source=strip_jsonp,
note='Downloading video details',
query=query,
data=json.dumps({'api': api}).encode('utf-8')) data=json.dumps({'api': api}).encode('utf-8'))
def _get_anvato_videos(self, access_key, video_id): def _get_anvato_videos(self, access_key, video_id):
@ -337,26 +383,28 @@ class AnvatoIE(InfoExtractor):
@staticmethod @staticmethod
def _extract_urls(ie, webpage, video_id): def _extract_urls(ie, webpage, video_id):
entries = [] entries = []
for mobj in re.finditer(AnvatoIE._ANVP_RE, webpage): anvp_res = AnvatoIE._ANVP_RE
anvplayer_data = ie._parse_json( for anvp_re in anvp_res if isinstance(anvp_res, (list, tuple, )) else (anvp_res, ):
mobj.group('anvp'), video_id, transform_source=unescapeHTML, for mobj in re.finditer(anvp_re, webpage):
fatal=False) anvplayer_data = ie._parse_json(
if not anvplayer_data: mobj.group('anvp'), video_id, transform_source=unescapeHTML,
continue fatal=False)
video = anvplayer_data.get('video') if not anvplayer_data:
if not isinstance(video, compat_str) or not video.isdigit(): continue
continue video = anvplayer_data.get('video')
access_key = anvplayer_data.get('accessKey') if not isinstance(video, compat_str) or not video.isdigit():
if not access_key: continue
mcp = anvplayer_data.get('mcp') access_key = anvplayer_data.get('accessKey')
if mcp: if not access_key:
access_key = AnvatoIE._MCP_TO_ACCESS_KEY_TABLE.get( mcp = anvplayer_data.get('mcp')
mcp.lower()) if mcp:
if not access_key: access_key = AnvatoIE._MCP_TO_ACCESS_KEY_TABLE.get(
continue mcp.lower())
entries.append(ie.url_result( if not access_key:
'anvato:%s:%s' % (access_key, video), ie=AnvatoIE.ie_key(), continue
video_id=video)) entries.append(ie.url_result(
'anvato:%s:%s' % (access_key, video), ie=AnvatoIE.ie_key(),
video_id=video))
return entries return entries
def _extract_anvato_videos(self, webpage, video_id): def _extract_anvato_videos(self, webpage, video_id):

View file

@ -5,6 +5,7 @@ from .anvato import AnvatoIE
from .sendtonews import SendtoNewsIE from .sendtonews import SendtoNewsIE
from ..compat import compat_urlparse from ..compat import compat_urlparse
from ..utils import ( from ..utils import (
merge_dicts,
parse_iso8601, parse_iso8601,
unified_timestamp, unified_timestamp,
) )
@ -14,6 +15,8 @@ class CBSLocalIE(AnvatoIE):
_VALID_URL_BASE = r'https?://[a-z]+\.cbslocal\.com/' _VALID_URL_BASE = r'https?://[a-z]+\.cbslocal\.com/'
_VALID_URL = _VALID_URL_BASE + r'video/(?P<id>\d+)' _VALID_URL = _VALID_URL_BASE + r'video/(?P<id>\d+)'
_OLD_ANVATO_KEY = 'anvato_cbslocal_app_web_prod_547f3e49241ef0e5d30c79b2efbca5d92c698f67'
_TESTS = [{ _TESTS = [{
'url': 'http://newyork.cbslocal.com/video/3580809-a-very-blue-anniversary/', 'url': 'http://newyork.cbslocal.com/video/3580809-a-very-blue-anniversary/',
'info_dict': { 'info_dict': {
@ -30,10 +33,6 @@ class CBSLocalIE(AnvatoIE):
}, },
'categories': [ 'categories': [
'Stations\\Spoken Word\\WCBSTV', 'Stations\\Spoken Word\\WCBSTV',
'Syndication\\AOL',
'Syndication\\MSN',
'Syndication\\NDN',
'Syndication\\Yahoo',
'Content\\News', 'Content\\News',
'Content\\News\\Local News', 'Content\\News\\Local News',
], ],
@ -42,12 +41,21 @@ class CBSLocalIE(AnvatoIE):
'params': { 'params': {
'skip_download': True, 'skip_download': True,
}, },
'expected_warnings': ('Failed to download m3u8 information', ),
}] }]
def _real_extract(self, url): def _real_extract(self, url):
mcp_id = self._match_id(url) mcp_id = self._match_id(url)
return self.url_result( webpage = self._download_webpage(url, mcp_id)
'anvato:anvato_cbslocal_app_web_prod_547f3e49241ef0e5d30c79b2efbca5d92c698f67:' + mcp_id, 'Anvato', mcp_id)
json_ld = self._search_json_ld(webpage, mcp_id, fatal=False) or {}
json_ld.pop('url', None)
return merge_dicts(
self._extract_anvato_videos(webpage, mcp_id)
or self.url_result(self._OLD_ANVATO_KEY + ':' + mcp_id, 'Anvato', mcp_id),
json_ld)
class CBSLocalArticleIE(AnvatoIE): class CBSLocalArticleIE(AnvatoIE):
@ -56,30 +64,25 @@ class CBSLocalArticleIE(AnvatoIE):
_TESTS = [{ _TESTS = [{
# Anvato backend # Anvato backend
'url': 'http://losangeles.cbslocal.com/2016/05/16/safety-advocates-say-fatal-car-seat-failures-are-public-health-crisis', 'url': 'http://losangeles.cbslocal.com/2016/05/16/safety-advocates-say-fatal-car-seat-failures-are-public-health-crisis',
'md5': 'f0ee3081e3843f575fccef901199b212', 'only_matching': True
}, {
'url': 'https://losangeles.cbslocal.com/2022/02/16/rams-super-bowl-parade-to-take-place-wednesday/',
'md5': '36bdac3fb24ec8a6d7790218a0357b08',
'info_dict': { 'info_dict': {
'id': '3401037', 'id': '6201053',
'ext': 'mp4', 'ext': 'mp4',
'title': 'Safety Advocates Say Fatal Car Seat Failures Are \'Public Health Crisis\'', 'display_id': 'rams-super-bowl-parade-to-take-place-wednesday',
'description': 'Collapsing seats have been the focus of scrutiny for decades, though experts say remarkably little has been done to address the issue. Randy Paige reports.', 'upload_date': '20220216',
'thumbnail': 're:^https?://.*',
'timestamp': 1463440500,
'upload_date': '20160516',
'uploader': 'CBS', 'uploader': 'CBS',
'subtitles': { 'description': 'Jeff Nguyen is live from outside the L.A. Memorial Coliseum where fans cheered on the Los Angeles Rams.',
'en': 'mincount:5', 'timestamp': 1645044990,
}, 'title': 'Rams Fans Gather Outside The LA Memorial Coliseum',
'categories': [ 'categories': [
'Stations\\Spoken Word\\KCBSTV', 'Stations\\Spoken Word\\KCALTV',
'Syndication\\MSN', 'Content\\News',
'Syndication\\NDN', 'Content\\Top Story',
'Syndication\\AOL',
'Syndication\\Yahoo',
'Syndication\\Tribune',
'Syndication\\Curb.tv',
'Content\\News'
], ],
'tags': ['CBS 2 News Evening'], 'tags': ['KCAL 9 News Afternoon'],
}, },
}, { }, {
# SendtoNews embed # SendtoNews embed
@ -92,18 +95,24 @@ class CBSLocalArticleIE(AnvatoIE):
# m3u8 download # m3u8 download
'skip_download': True, 'skip_download': True,
}, },
'skip': 'Redirects to CBS News home page',
}] }]
def _real_extract(self, url): def _real_extract(self, url):
display_id = self._match_id(url) display_id = self._match_id(url)
webpage = self._download_webpage(url, display_id) webpage = self._download_webpage(url, display_id)
json_ld = self._search_json_ld(webpage, display_id, fatal=False) or {}
json_ld.pop('url', None)
sendtonews_url = SendtoNewsIE._extract_url(webpage) sendtonews_url = SendtoNewsIE._extract_url(webpage)
if sendtonews_url: if sendtonews_url:
return self.url_result( result = self.url_result(
compat_urlparse.urljoin(url, sendtonews_url), compat_urlparse.urljoin(url, sendtonews_url),
ie=SendtoNewsIE.ie_key()) ie=SendtoNewsIE.ie_key())
return merge_dicts(result, json_ld)
# returns a dict, or raises
info_dict = self._extract_anvato_videos(webpage, display_id) info_dict = self._extract_anvato_videos(webpage, display_id)
timestamp = unified_timestamp(self._html_search_regex( timestamp = unified_timestamp(self._html_search_regex(
@ -111,9 +120,10 @@ class CBSLocalArticleIE(AnvatoIE):
'released date', default=None)) or parse_iso8601( 'released date', default=None)) or parse_iso8601(
self._html_search_meta('uploadDate', webpage)) self._html_search_meta('uploadDate', webpage))
info_dict.update({ return merge_dicts(
'display_id': display_id, info_dict,
'timestamp': timestamp, json_ld,
}) {
'display_id': display_id,
return info_dict 'timestamp': timestamp,
})

View file

@ -5,43 +5,45 @@ import re
from .common import InfoExtractor from .common import InfoExtractor
from ..utils import ( from ..utils import (
dict_get,
ExtractorError,
float_or_none, float_or_none,
parse_iso8601, parse_iso8601,
update_url_query, update_url_query,
int_or_none, int_or_none,
determine_ext,
determine_protocol, determine_protocol,
strip_or_none,
try_get,
unescapeHTML, unescapeHTML,
urljoin,
) )
class SendtoNewsIE(InfoExtractor): class SendtoNewsIE(InfoExtractor):
_VALID_URL = r'https?://embed\.sendtonews\.com/player2/embedplayer\.php\?.*\bSC=(?P<id>[0-9A-Za-z-]+)' # TODO handle items with ?fk=XXXX6789&cid=1234 -> SC=XXXX6789-???????-1234
_VALID_URL = r'https?://embed\.sendtonews\.com/(?:player\d/embed(?:player|code)\.(?:php|js)|oembed/?)\?.*\bSC=(?P<id>[\w-]+)'
_TEST = { _TESTS = [{
# From http://cleveland.cbslocal.com/2016/05/16/indians-score-season-high-15-runs-in-blowout-win-over-reds-rapid-reaction/ # From http://cleveland.cbslocal.com/2016/05/16/indians-score-season-high-15-runs-in-blowout-win-over-reds-rapid-reaction/
'url': 'http://embed.sendtonews.com/player2/embedplayer.php?SC=GxfCe0Zo7D-175909-5588&type=single&autoplay=on&sound=YES', 'url': 'http://embed.sendtonews.com/player2/embedplayer.php?SC=GxfCe0Zo7D-175909-5588&type=single&autoplay=on&sound=YES',
'info_dict': { 'info_dict': {
'id': 'GxfCe0Zo7D-175909-5588' 'id': 'GxfCe0Zo7D-175909-5588'
}, },
'playlist_count': 8, 'playlist_count': 10,
# test the first video only to prevent lengthy tests }, {
'playlist': [{ 'url': 'https://embed.sendtonews.com/player4/embedplayer.php?SC=mq3wIKSb68-1206898-8402&type=single',
'info_dict': { 'info_dict': {
'id': '240385', 'id': '1752278',
'ext': 'mp4', 'ext': 'mp4',
'title': 'Indians introduce Encarnacion', 'title': 'Las vegas homebuilders had banner sales year in 2021, and other top stories from January 24, 2022.',
'description': 'Indians president of baseball operations Chris Antonetti and Edwin Encarnacion discuss the slugger\'s three-year contract with Cleveland', 'description': 'LAS VEGAS HOMEBUILDERS HAD BANNER SALES YEAR IN 2021., and other top stories from January 24, 2022.',
'duration': 137.898, 'timestamp': 1643063702,
'thumbnail': r're:https?://.*\.jpg$', 'upload_date': '20220124',
'upload_date': '20170105', 'thumbnail': r're:https?://.*\.(?:png|jpg)$',
'timestamp': 1483649762, 'categories': ['Business'],
}, 'tags': list,
}],
'params': {
# m3u8 download
'skip_download': True,
}, },
} }]
_URL_TEMPLATE = '//embed.sendtonews.com/player2/embedplayer.php?SC=%s' _URL_TEMPLATE = '//embed.sendtonews.com/player2/embedplayer.php?SC=%s'
@ -59,17 +61,62 @@ class SendtoNewsIE(InfoExtractor):
playlist_id = self._match_id(url) playlist_id = self._match_id(url)
data_url = update_url_query( data_url = update_url_query(
url.replace('embedplayer.php', 'data_read.php'), re.sub(
{'cmd': 'loadInitial'}) r'(?P<player>player\d)?(?<!/)/(?P<embed>embed.+?|oembed/)\?',
lambda m: '/%s/data_read.php?' % ((m.group('player') or 'player4'), ),
url),
{'cmd': 'loadInitial', 'type': 'single', })
playlist_data = self._download_json(data_url, playlist_id) playlist_data = self._download_json(data_url, playlist_id)
playlist = try_get(playlist_data, lambda x: x['playlistData'][0], (dict, list)) or {}
if isinstance(playlist, dict):
err = playlist.get('error', 'No or invalid data returned from API')
raise ExtractorError(err)
entries = [] entries = []
for video in playlist_data['playlistData'][0]: info_dict = {}
info_dict = self._parse_jwplayer_data( for video in playlist:
video['jwconfiguration'], try:
require_title=False, m3u8_id='hls', rtmp_params={'no_resume': True}) err = video.get('error')
if err and video.get('S_ID') is not None:
e = ExtractorError(err)
e.msg = err
raise e
except AttributeError:
continue
except ExtractorError as e:
self.report_warning(e.msg, playlist_id)
continue
if 'jwconfiguration' in video:
info_dict.update(self._parse_jwplayer_data(
video['jwconfiguration'],
require_title=False, m3u8_id='hls', rtmp_params={'no_resume': True}))
elif 'configuration' not in video:
continue
else:
fmt_url = urljoin(
url,
try_get(video, lambda x: x['configuration']['sources']['src']))
if not fmt_url:
continue
video_id = strip_or_none(video.get('SM_ID') or video['configuration']['mediaid'])
title = strip_or_none(video.get('S_headLine') or video['configuration']['title'])
if not video_id or not title:
continue
ext = determine_ext(fmt_url)
if ext == 'm3u8':
formats = self._extract_m3u8_formats(
fmt_url, playlist_id, 'mp4', entry_protocol='m3u8_native',
m3u8_id='hls', fatal=False)
else:
formats = [{
'url': fmt_url,
'ext': ext,
'width': int_or_none(video.get('SM_M_VIDEO_WIDTH')),
'height': int_or_none(video.get('SM_M_VIDEO_HEIGHT')),
}]
info_dict['formats'] = formats
for f in info_dict['formats']: for f in info_dict.get('formats') or []:
if f.get('tbr'): if f.get('tbr'):
continue continue
tbr = int_or_none(self._search_regex( tbr = int_or_none(self._search_regex(
@ -83,23 +130,31 @@ class SendtoNewsIE(InfoExtractor):
self._sort_formats(info_dict['formats'], ('tbr', 'height', 'width', 'format_id')) self._sort_formats(info_dict['formats'], ('tbr', 'height', 'width', 'format_id'))
thumbnails = [] thumbnails = []
if video.get('thumbnailUrl'): for tn_id, tn in (('poster', video['configuration'].get('poster')),
('normal', video.get('thumbnailUrl')),
('small', video.get('smThumbnailUrl'))):
tn = urljoin(url, tn)
if not tn:
continue
thumbnails.append({ thumbnails.append({
'id': 'normal', 'id': tn_id,
'url': video['thumbnailUrl'], 'url': tn,
})
if video.get('smThumbnailUrl'):
thumbnails.append({
'id': 'small',
'url': video['smThumbnailUrl'],
}) })
info_dict.update({ info_dict.update({
'title': video['S_headLine'].strip(), 'id': video_id,
'description': unescapeHTML(video.get('S_fullStory')), 'title': title,
'description': unescapeHTML(dict_get(video, ('S_fullStory', 'S_shortSummary'))),
'thumbnails': thumbnails, 'thumbnails': thumbnails,
'duration': float_or_none(video.get('SM_length')), 'duration': float_or_none(
dict_get(video, ('SM_length', 'SM_M_LENGTH'))
or video['configuration'].get('duration')),
'timestamp': parse_iso8601(video.get('S_sysDate'), delimiter=' '), 'timestamp': parse_iso8601(video.get('S_sysDate'), delimiter=' '),
'tags': [t for t in video.get('S_tags', '').split(',') if t],
'categories': [c for c in video.get('S_category', '').split(',') if c],
}) })
entries.append(info_dict) entries.append(info_dict)
if len(entries) == 1:
entries[0]['display_id'] = playlist_id
return entries[0]
return self.playlist_result(entries, playlist_id) return self.playlist_result(entries, playlist_id)