From: Sergey M․ Date: Thu, 21 Jan 2016 16:58:03 +0000 (+0600) Subject: [youtube] Simplify automatic captions URL check (Closes #8287) X-Git-Tag: 2021.01.07~6655 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/51290d8457aa8460382407796740063ced464481?ds=sidebyside;hp=582f4f834e5cb6fc783eeb51bd977aa237330e79 [youtube] Simplify automatic captions URL check (Closes #8287) --- diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 567877920..8e8fc14d2 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -964,8 +964,8 @@ 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") + if not caption_url: + self._downloader.report_warning(err_msg) return {} timestamp = args['timestamp'] # We get the available subtitles