1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-06 02:49:35 +02:00

[generic] Improve KVS player extraction (#2328)

Closes #2281
Authored by: trassshhub
This commit is contained in:
trasssh 2022-01-14 00:51:00 +08:00 committed by GitHub
parent a4a426023d
commit 11c861702d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,7 @@
mimetype2ext, mimetype2ext,
orderedSet, orderedSet,
parse_duration, parse_duration,
parse_resolution,
sanitized_Request, sanitized_Request,
smuggle_url, smuggle_url,
unescapeHTML, unescapeHTML,
@ -3774,20 +3775,21 @@ def filter_video(urls):
protocol, _, _ = url.partition('/') protocol, _, _ = url.partition('/')
thumbnail = protocol + thumbnail thumbnail = protocol + thumbnail
url_keys = list(filter(re.compile(r'video_url|video_alt_url\d+').fullmatch, flashvars.keys()))
formats = [] formats = []
for key in ('video_url', 'video_alt_url', 'video_alt_url2'): for key in url_keys:
if key in flashvars and '/get_file/' in flashvars[key]: if '/get_file/' not in flashvars[key]:
next_format = { continue
'url': self._kvs_getrealurl(flashvars[key], flashvars['license_code']), format_id = flashvars.get(f'{key}_text', key)
'format_id': flashvars.get(key + '_text', key), formats.append({
'ext': 'mp4', 'url': self._kvs_getrealurl(flashvars[key], flashvars['license_code']),
} 'format_id': format_id,
height = re.search(r'%s_(\d+)p\.mp4(?:/[?].*)?$' % flashvars['video_id'], flashvars[key]) 'ext': 'mp4',
if height: **(parse_resolution(format_id) or parse_resolution(flashvars[key]))
next_format['height'] = int(height.group(1)) })
else: if not formats[-1].get('height'):
next_format['quality'] = 1 formats[-1]['quality'] = 1
formats.append(next_format)
self._sort_formats(formats) self._sort_formats(formats)
return { return {