mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[youtube] Fix detection of videos with automatic captions
This commit is contained in:
parent
d665f8d3cb
commit
e3dc22ca3a
@ -503,7 +503,11 @@ def _get_available_automatic_caption(self, video_id, webpage):
|
|||||||
list_url = caption_url + '&' + list_params
|
list_url = caption_url + '&' + list_params
|
||||||
list_page = self._download_webpage(list_url, video_id)
|
list_page = self._download_webpage(list_url, video_id)
|
||||||
caption_list = xml.etree.ElementTree.fromstring(list_page.encode('utf-8'))
|
caption_list = xml.etree.ElementTree.fromstring(list_page.encode('utf-8'))
|
||||||
original_lang = caption_list.find('track').attrib['lang_code']
|
original_lang_node = caption_list.find('track')
|
||||||
|
if 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']
|
||||||
|
|
||||||
sub_lang_list = {}
|
sub_lang_list = {}
|
||||||
for lang_node in caption_list.findall('target'):
|
for lang_node in caption_list.findall('target'):
|
||||||
|
Loading…
Reference in New Issue
Block a user