diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-11 17:37:02 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-11 19:13:24 +0530 |
commit | 8ba87148802843c6502f7ffc48e574a2eb0049d2 (patch) | |
tree | d0e7fe8162384799828a59b6c0a1e2b82c80c61e /yt_dlp/YoutubeDL.py | |
parent | 187986a857993411fd31c4e017ea4fccccf343fa (diff) | |
download | hypervideo-pre-8ba87148802843c6502f7ffc48e574a2eb0049d2.tar.lz hypervideo-pre-8ba87148802843c6502f7ffc48e574a2eb0049d2.tar.xz hypervideo-pre-8ba87148802843c6502f7ffc48e574a2eb0049d2.zip |
[EmbedThumbnail] Fix for already downloaded thumbnail
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index c7d6c34f0..5532ea76c 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -3247,6 +3247,7 @@ class YoutubeDL(object): if not self.params.get('overwrites', True) and os.path.exists(encodeFilename(thumb_filename)): ret.append(suffix + thumb_ext) + t['filepath'] = thumb_filename self.to_screen('[%s] %s: Thumbnail %sis already present' % (info_dict['extractor'], info_dict['id'], thumb_display_id)) else: |