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

[abc] Support 1080p (#2819)

Authored by: Ronnnny
This commit is contained in:
Ronnnny 2022-02-18 19:25:47 +11:00 committed by GitHub
parent 549cb2a836
commit c15c316b21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -213,7 +213,7 @@ def tokenize_url(url, token):
'hdnea': token,
})
for sd in ('720', 'sd', 'sd-low'):
for sd in ('1080', '720', 'sd', 'sd-low'):
sd_url = try_get(
stream, lambda x: x['streams']['hls'][sd], compat_str)
if not sd_url: