mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-05 02:22:44 +01:00
[YoutubeDL] Fix incomplete formats check
This commit is contained in:
parent
317f7ab634
commit
2e221ca3a8
@ -1396,12 +1396,11 @@ class YoutubeDL(object):
|
|||||||
# instead of just formats.
|
# instead of just formats.
|
||||||
# This fixes incorrect format selection issue (see
|
# This fixes incorrect format selection issue (see
|
||||||
# https://github.com/rg3/youtube-dl/issues/10083).
|
# https://github.com/rg3/youtube-dl/issues/10083).
|
||||||
incomplete_formats = all(
|
incomplete_formats = (
|
||||||
# All formats are video-only or
|
# All formats are video-only or
|
||||||
f.get('vcodec') != 'none' and f.get('acodec') == 'none' or
|
all(f.get('vcodec') != 'none' and f.get('acodec') == 'none' for f in formats) or
|
||||||
# all formats are audio-only
|
# all formats are audio-only
|
||||||
f.get('vcodec') == 'none' and f.get('acodec') != 'none'
|
all(f.get('vcodec') == 'none' and f.get('acodec') != 'none' for f in formats))
|
||||||
for f in formats)
|
|
||||||
|
|
||||||
ctx = {
|
ctx = {
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
|
Loading…
Reference in New Issue
Block a user