mirror of https://github.com/yt-dlp/yt-dlp.git
[extractor/youtube] Subtitles cannot be translated to `und`
Closes #5674
This commit is contained in:
parent
a9d069f5b8
commit
71eb82d1b2
|
@ -4085,7 +4085,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
||||||
if not trans_code:
|
if not trans_code:
|
||||||
continue
|
continue
|
||||||
orig_trans_code = trans_code
|
orig_trans_code = trans_code
|
||||||
if caption_track.get('kind') != 'asr':
|
if caption_track.get('kind') != 'asr' and trans_code != 'und':
|
||||||
if not get_translated_subs:
|
if not get_translated_subs:
|
||||||
continue
|
continue
|
||||||
trans_code += f'-{lang_code}'
|
trans_code += f'-{lang_code}'
|
||||||
|
|
Loading…
Reference in New Issue