mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 11:42:43 +01:00
Ensure mergeall
selects best format when multistreams are disabled
This commit is contained in:
parent
a31953b0e6
commit
921b76cab8
@ -1650,8 +1650,8 @@ def selector_function(ctx):
|
||||
formats = list(ctx['formats'])
|
||||
if not formats:
|
||||
return
|
||||
merged_format = formats[0]
|
||||
for f in formats[1:]:
|
||||
merged_format = formats[-1]
|
||||
for f in formats[-2::-1]:
|
||||
merged_format = _merge((merged_format, f))
|
||||
yield merged_format
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user