mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 09:57:59 +09:00
[youtube] Prefer videos with sound
This commit is contained in:
parent
bc2103f3bf
commit
d80044c235
@ -1432,10 +1432,17 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
|
|||||||
'height': height,
|
'height': height,
|
||||||
'format_note': note,
|
'format_note': note,
|
||||||
})
|
})
|
||||||
|
|
||||||
def _formats_key(f):
|
def _formats_key(f):
|
||||||
return (f.get('height') if f.get('height') is not None else -1,
|
note = f.get('format_note')
|
||||||
f.get('width') if f.get('width') is not None else -1)
|
if note is None:
|
||||||
formats = sorted(formats, key=_formats_key)
|
note = u''
|
||||||
|
is_dash = u'DASH' in note
|
||||||
|
return (
|
||||||
|
0 if is_dash else 1,
|
||||||
|
f.get('height') if f.get('height') is not None else -1,
|
||||||
|
f.get('width') if f.get('width') is not None else -1)
|
||||||
|
formats.sort(key=_formats_key)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
|
Loading…
Reference in New Issue
Block a user