Преглед изворни кода

[postprocessor/embedthumbnail] Skip embedding when there aren't any thumbnails

Andrew Udvare пре 7 година
родитељ
комит
b5cbe3d652
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      youtube_dl/postprocessor/embedthumbnail.py

+ 2 - 1
youtube_dl/postprocessor/embedthumbnail.py

@@ -31,7 +31,8 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
         temp_filename = prepend_extension(filename, 'temp')
 
         if not info.get('thumbnails'):
-            raise EmbedThumbnailPPError('Thumbnail was not found. Nothing to do.')
+            self._downloader.to_screen('[embedthumbnail] There aren\'t any thumbnails to embed')
+            return [], info
 
         thumbnail_filename = info['thumbnails'][-1]['filename']