Browse Source

[crunchyroll] Fix subtitle lang code extraction

totalwebcasting
Sergey M 11 years ago
parent
commit
70cb73922b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/crunchyroll.py

+ 1
- 1
youtube_dl/extractor/crunchyroll.py View File

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