[YoutubeDL] Restore filename for thumbnails
authorSergey M․ <dstftw@gmail.com>
Thu, 14 May 2015 09:21:27 +0000 (15:21 +0600)
committerSergey M․ <dstftw@gmail.com>
Thu, 14 May 2015 09:21:27 +0000 (15:21 +0600)
youtube_dl/YoutubeDL.py

index 4c8196d082fa9cfffbb45a1c5f5684664ecc1a80..691f3e09f807de52c1c19f334befd0ccc0d4f82c 100755 (executable)
@@ -1849,7 +1849,7 @@ class YoutubeDL(object):
             thumb_ext = determine_ext(t['url'], 'jpg')
             suffix = '_%s' % t['id'] if len(thumbnails) > 1 else ''
             thumb_display_id = '%s ' % t['id'] if len(thumbnails) > 1 else ''
-            thumb_filename = os.path.splitext(filename)[0] + suffix + '.' + thumb_ext
+            t['filename'] = thumb_filename = os.path.splitext(filename)[0] + suffix + '.' + thumb_ext
 
             if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(thumb_filename)):
                 self.to_screen('[%s] %s: Thumbnail %sis already present' %