Explorar o código

[postprocessor/embedthumbnail] Skipping if thumbnail file missing

Fixes #5996
Yen Chi Hsuan %!s(int64=10) %!d(string=hai) anos
pai
achega
c33a8639a7
Modificáronse 1 ficheiros con 5 adicións e 0 borrados
  1. 5 0
      youtube_dl/postprocessor/embedthumbnail.py

+ 5 - 0
youtube_dl/postprocessor/embedthumbnail.py

@@ -35,6 +35,11 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
 
         thumbnail_filename = info['thumbnails'][-1]['filename']
 
+        if not os.path.exists(encodeFilename(thumbnail_filename)):
+            self._downloader.report_warning(
+                'Skipping embedding the thumbnail because the file is missing.')
+            return [], info
+
         if info['ext'] == 'mp3':
             options = [
                 '-c', 'copy', '-map', '0', '-map', '1',