mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[youtube] Fix subtitle names
This commit is contained in:
parent
7a340e0df3
commit
a7429aa9fa
1 changed files with 1 additions and 1 deletions
|
@ -2977,7 +2977,7 @@ def process_language(container, base_url, lang_code, sub_name, query):
|
|||
continue
|
||||
process_language(
|
||||
subtitles, base_url, lang_code,
|
||||
traverse_obj(caption_track, ('name', 'simpleText')),
|
||||
traverse_obj(caption_track, ('name', 'simpleText'), ('name', 'runs', ..., 'text'), get_all=False),
|
||||
{})
|
||||
continue
|
||||
automatic_captions = {}
|
||||
|
|
Loading…
Reference in a new issue