1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-06 16:11:00 +02:00

Fix issue #8109 (error when downloading automatic captions)

This commit is contained in:
Dimitre Liotev 2016-01-21 08:10:41 +02:00 committed by Sergey M․
parent e87d98b0dd
commit 582f4f834e

View File

@ -964,6 +964,9 @@ def _get_automatic_captions(self, video_id, webpage):
try:
args = player_config['args']
caption_url = args['ttsurl']
if caption_url is None or caption_url == "" or caption_url.isspace():
self._downloader.report_warning("No automatic captions")
return {}
timestamp = args['timestamp']
# We get the available subtitles
list_params = compat_urllib_parse.urlencode({