mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-07 10:57:59 +09:00
[crunchyroll] Fix subtitle lang code extraction
This commit is contained in:
parent
344400951c
commit
70cb73922b
@ -166,7 +166,7 @@ class CrunchyrollIE(InfoExtractor):
|
||||
data = base64.b64decode(data)
|
||||
|
||||
subtitle = self._decrypt_subtitles(data, iv, id).decode('utf-8')
|
||||
lang_code = self._search_regex(r'lang_code=\'([^\']+)', subtitle, 'subtitle_lang_code', fatal=False)
|
||||
lang_code = self._search_regex(r'lang_code=["\']([^"\']+)', subtitle, 'subtitle_lang_code', fatal=False)
|
||||
if not lang_code:
|
||||
continue
|
||||
subtitles[lang_code] = self._convert_subtitles_to_srt(subtitle)
|
||||
|
Loading…
Reference in New Issue
Block a user