ソースを参照

[youtube] Simplify automatic captions URL check (Closes #8287)

Sergey M․ 10 年 前
コミット
51290d8457
1 ファイル変更2 行追加2 行削除
  1. 2 2
      youtube_dl/extractor/youtube.py

+ 2 - 2
youtube_dl/extractor/youtube.py

@@ -964,8 +964,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
         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():
-                self._downloader.report_warning("No automatic captions")
+            if not caption_url:
+                self._downloader.report_warning(err_msg)
                 return {}
                 return {}
             timestamp = args['timestamp']
             timestamp = args['timestamp']
             # We get the available subtitles
             # We get the available subtitles