about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-06-18 22:05:02 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-06-18 22:05:02 +0800
commitc33a8639a7c1f783297f29282b48fceec9a0b84a (patch)
tree73e1846ae2dc623be0336c716b29929e66c1bbc3
parent25fa8d66e653d443522bf10140106f88711d1d66 (diff)
downloadyoutube-dl-c33a8639a7c1f783297f29282b48fceec9a0b84a.tar.gz
youtube-dl-c33a8639a7c1f783297f29282b48fceec9a0b84a.tar.xz
youtube-dl-c33a8639a7c1f783297f29282b48fceec9a0b84a.zip
[postprocessor/embedthumbnail] Skipping if thumbnail file missing
Fixes #5996
-rw-r--r--youtube_dl/postprocessor/embedthumbnail.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/postprocessor/embedthumbnail.py b/youtube_dl/postprocessor/embedthumbnail.py
index 774494efd..e19dbf73d 100644
--- a/youtube_dl/postprocessor/embedthumbnail.py
+++ b/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',