aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Merkel <mail@alexmerkel.com>2020-06-21 12:06:01 +0200
committerAlex Merkel <mail@alexmerkel.com>2020-06-21 12:06:01 +0200
commitac0ad4f91dbf4e82c22a8fd059891f0b5c138f0d (patch)
tree173d0ee361a35d7bff29cac63e47a4f7acc73545
parente987deb504565102bb6dc271b074781434a75e5c (diff)
downloadhypervideo-pre-ac0ad4f91dbf4e82c22a8fd059891f0b5c138f0d.tar.lz
hypervideo-pre-ac0ad4f91dbf4e82c22a8fd059891f0b5c138f0d.tar.xz
hypervideo-pre-ac0ad4f91dbf4e82c22a8fd059891f0b5c138f0d.zip
[postprocessor/embedthumbnail] Close file before possible renaming
-rw-r--r--youtube_dl/postprocessor/embedthumbnail.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/youtube_dl/postprocessor/embedthumbnail.py b/youtube_dl/postprocessor/embedthumbnail.py
index 74928be55..7673b4fd1 100644
--- a/youtube_dl/postprocessor/embedthumbnail.py
+++ b/youtube_dl/postprocessor/embedthumbnail.py
@@ -44,12 +44,12 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
#Check for mislabeled webp file
with open(encodeFilename(thumbnail_filename), "rb") as f:
b = f.read(16)
- if b'\x57\x45\x42\x50' in b: #Binary for WEBP
- [thumbnail_filename_path, thumbnail_filename_extension] = os.path.splitext(thumbnail_filename)
- if not thumbnail_filename_extension == ".webp":
- webp_thumbnail_filename = thumbnail_filename_path + ".webp"
- os.rename(thumbnail_filename, webp_thumbnail_filename)
- thumbnail_filename = webp_thumbnail_filename
+ if b'\x57\x45\x42\x50' in b: #Binary for WEBP
+ [thumbnail_filename_path, thumbnail_filename_extension] = os.path.splitext(thumbnail_filename)
+ if not thumbnail_filename_extension == ".webp":
+ webp_thumbnail_filename = thumbnail_filename_path + ".webp"
+ os.rename(thumbnail_filename, webp_thumbnail_filename)
+ thumbnail_filename = webp_thumbnail_filename
#If not a jpg or png thumbnail, convert it to jpg using ffmpeg
if not os.path.splitext(thumbnail_filename)[1].lower() in ['.jpg', '.png']: