We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1789d4 commit 8314fc2Copy full SHA for 8314fc2
yt_dlp/extractor/abc.py
@@ -341,6 +341,11 @@ def tokenize_url(url, token):
341
formats.extend(fmts)
342
break
343
344
+ # deprioritize audio description tracks
345
+ for f in formats:
346
+ if 'description' in (f.get('format_note') or '').lower():
347
+ f['language_preference'] = -10
348
+
349
subtitles = {}
350
if src_vtt := traverse_obj(stream, ('captions', 'src-vtt', {url_or_none})):
351
subtitles['en'] = [{
0 commit comments