[youtube] Deprioritize format 22

Reduces chance of encountering #3372
pull/3672/head
pukkandan 2 years ago
parent 10fa2471fc
commit 91e5e839d3
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39

@ -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…
Cancel
Save