projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5914547
)
[youtube] Do not crash if caption info is missing altogether (Fixes #1610)
author
Philipp Hagemeister
<phihag@phihag.de>
Thu, 17 Oct 2013 00:19:19 +0000
(
02:19
+0200)
committer
Philipp Hagemeister
<phihag@phihag.de>
Thu, 17 Oct 2013 00:19:19 +0000
(
02:19
+0200)
youtube_dl/extractor/youtube.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/youtube.py
b/youtube_dl/extractor/youtube.py
index 4347651d7dc145bdda4d7684d3ba42c1570687e7..fb7c42830781bf4cbf3f3ba78547e6defe5b13c5 100644
(file)
--- a/
youtube_dl/extractor/youtube.py
+++ b/
youtube_dl/extractor/youtube.py
@@
-1150,7
+1150,7
@@
class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
list_page = self._download_webpage(list_url, video_id)
caption_list = xml.etree.ElementTree.fromstring(list_page.encode('utf-8'))
original_lang_node = caption_list.find('track')
- if original_lang_node.attrib.get('kind') != 'asr' :
+ if
not original_lang_node or
original_lang_node.attrib.get('kind') != 'asr' :
self._downloader.report_warning(u'Video doesn\'t have automatic captions')
return {}
original_lang = original_lang_node.attrib['lang_code']