[postprocessor/embedthumbnail] Skip embedding when there aren't any thumbnails
authorAndrew Udvare <Tatsh@users.noreply.github.com>
Sun, 25 Feb 2018 12:33:13 +0000 (07:33 -0500)
committerSergey M <dstftw@gmail.com>
Sun, 25 Feb 2018 12:33:13 +0000 (19:33 +0700)
youtube_dl/postprocessor/embedthumbnail.py

index e606a58de886533fb5239b9bb958fbff9606a4ee..56be914b8f1b6e98802163ae1013392079d93fb3 100644 (file)
@@ -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']