소스 검색

Option '--load-info': if the download fails, try extracting the info with the 'webpage_url' field of the info dict

The video url may have expired.
Jaime Marquínez Ferrándiz 11 년 전
부모
커밋
d494389821
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. 10 1
      youtube_dl/YoutubeDL.py

+ 10 - 1
youtube_dl/YoutubeDL.py

@@ -816,7 +816,16 @@ class YoutubeDL(object):
         with open(info_filename, 'r') as f:
             # TODO: Check for errors
             info = json.load(f)
-        self.process_ie_result(info, download=True)
+        try:
+            self.process_ie_result(info, download=True)
+        except DownloadError:
+            webpage_url = info.get('webpage_url')
+            if webpage_url is not None:
+                self.report_warning(u'The info failed to download, trying with "%s"' % webpage_url)
+                return self.download([webpage_url])
+            else:
+                raise
+        return self._download_retcode
 
     def post_process(self, filename, ie_info):
         """Run all the postprocessors on the given file."""