YoutubeIE: use the same function for getting the subtitles for the "--write-sub" and "--all-sub" options

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-06-26 11:39:34 +02:00
parent 5d51a883c2
commit 88ae5991cd
1 changed files with 15 additions and 31 deletions

View File

@ -273,8 +273,8 @@ class YoutubeIE(InfoExtractor):
except KeyError: except KeyError:
self._downloader.report_warning(err_msg) self._downloader.report_warning(err_msg)
return {} return {}
def _extract_subtitle(self, video_id): def _extract_subtitles(self, video_id):
""" """
Return a dictionary: {language: subtitles} or {} if the subtitles Return a dictionary: {language: subtitles} or {} if the subtitles
couldn't be found couldn't be found
@ -283,30 +283,17 @@ class YoutubeIE(InfoExtractor):
sub_format = self._downloader.params.get('subtitlesformat') sub_format = self._downloader.params.get('subtitlesformat')
if not sub_lang_list: #There was some error, it didn't get the available subtitles if not sub_lang_list: #There was some error, it didn't get the available subtitles
return {} return {}
if self._downloader.params.get('subtitleslang', False): if self._downloader.params.get('writesubtitles', False):
sub_lang = self._downloader.params.get('subtitleslang') if self._downloader.params.get('subtitleslang', False):
elif 'en' in sub_lang_list: sub_lang = self._downloader.params.get('subtitleslang')
sub_lang = 'en' elif 'en' in sub_lang_list:
else: sub_lang = 'en'
sub_lang = list(sub_lang_list.keys())[0] else:
if not sub_lang in sub_lang_list: sub_lang = list(sub_lang_list.keys())[0]
self._downloader.report_warning(u'no closed captions found in the specified language "%s"' % sub_lang) if not sub_lang in sub_lang_list:
return {} self._downloader.report_warning(u'no closed captions found in the specified language "%s"' % sub_lang)
return {}
subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format) sub_lang_list = {sub_lang: sub_lang_list[sub_lang]}
if subtitle:
self.to_screen('sub %s' % subtitle[:20])
return {sub_lang: subtitle}
else:
return {}
def _extract_all_subtitles(self, video_id):
"""
Return a dicitonary: {language: subtitles} or {} if the subtitles
couldn't be found
"""
sub_lang_list = self._get_available_subtitles(video_id)
sub_format = self._downloader.params.get('subtitlesformat')
subtitles = {} subtitles = {}
for sub_lang in sub_lang_list: for sub_lang in sub_lang_list:
subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format) subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format)
@ -534,14 +521,11 @@ class YoutubeIE(InfoExtractor):
# subtitles # subtitles
video_subtitles = None video_subtitles = None
if self._downloader.params.get('writesubtitles', False): if self._downloader.params.get('writesubtitles', False) or self._downloader.params.get('allsubtitles', False):
video_subtitles = self._extract_subtitle(video_id) video_subtitles = self._extract_subtitles(video_id)
elif self._downloader.params.get('writeautomaticsub', False): elif self._downloader.params.get('writeautomaticsub', False):
video_subtitles = self._request_automatic_caption(video_id, video_webpage) video_subtitles = self._request_automatic_caption(video_id, video_webpage)
if self._downloader.params.get('allsubtitles', False):
video_subtitles = self._extract_all_subtitles(video_id)
if self._downloader.params.get('listsubtitles', False): if self._downloader.params.get('listsubtitles', False):
self._list_available_subtitles(video_id) self._list_available_subtitles(video_id)
return return