mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[youtube] Simplify automatic captions URL check (Closes #8287)
This commit is contained in:
parent
582f4f834e
commit
51290d8457
@ -964,8 +964,8 @@ def _get_automatic_captions(self, video_id, webpage):
|
|||||||
try:
|
try:
|
||||||
args = player_config['args']
|
args = player_config['args']
|
||||||
caption_url = args['ttsurl']
|
caption_url = args['ttsurl']
|
||||||
if caption_url is None or caption_url == "" or caption_url.isspace():
|
if not caption_url:
|
||||||
self._downloader.report_warning("No automatic captions")
|
self._downloader.report_warning(err_msg)
|
||||||
return {}
|
return {}
|
||||||
timestamp = args['timestamp']
|
timestamp = args['timestamp']
|
||||||
# We get the available subtitles
|
# We get the available subtitles
|
||||||
|
Loading…
Reference in New Issue
Block a user