mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-23 17:02:30 +00:00
[YoutubeDL] Try to download worst audio+video served by a single file first (Closes #5408)
This commit is contained in:
parent
e91b2d14e3
commit
c36a959549
@ -919,6 +919,11 @@ def select_format(self, format_spec, available_formats):
|
|||||||
if format_spec == 'best' or format_spec is None:
|
if format_spec == 'best' or format_spec is None:
|
||||||
return available_formats[-1]
|
return available_formats[-1]
|
||||||
elif format_spec == 'worst':
|
elif format_spec == 'worst':
|
||||||
|
audiovideo_formats = [
|
||||||
|
f for f in available_formats
|
||||||
|
if f.get('vcodec') != 'none' and f.get('acodec') != 'none']
|
||||||
|
if audiovideo_formats:
|
||||||
|
return audiovideo_formats[0]
|
||||||
return available_formats[0]
|
return available_formats[0]
|
||||||
elif format_spec == 'bestaudio':
|
elif format_spec == 'bestaudio':
|
||||||
audio_formats = [
|
audio_formats = [
|
||||||
|
Loading…
Reference in New Issue
Block a user