parent
10fa2471fc
commit
91e5e839d3
1 changed files with 2 additions and 1 deletions
|
@ -3183,7 +3183,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|||
' (default)' if language_preference > 0 else ''),
|
||||
fmt.get('qualityLabel') or quality.replace('audio_quality_', ''),
|
||||
throttled and 'THROTTLED', is_damaged and 'DAMAGED', delim=', '),
|
||||
'source_preference': -10 if throttled else -1,
|
||||
# Format 22 is likely to be damaged. See https://github.com/yt-dlp/yt-dlp/issues/3372
|
||||
'source_preference': -10 if throttled else -5 if itag == '22' else -1,
|
||||
'fps': int_or_none(fmt.get('fps')) or None,
|
||||
'height': height,
|
||||
'quality': q(quality),
|
||||
|
|
Loading…
Reference in a new issue