diff options
author | Alex Merkel <mail@alexmerkel.com> | 2020-06-21 12:16:45 +0200 |
---|---|---|
committer | Alex Merkel <mail@alexmerkel.com> | 2020-06-21 12:16:45 +0200 |
commit | 6011dd9539eae03d78246db5c320f29607871d43 (patch) | |
tree | 7f6af27152e491d87786a4776280bac315b6e9cf | |
parent | ac0ad4f91dbf4e82c22a8fd059891f0b5c138f0d (diff) | |
download | hypervideo-pre-6011dd9539eae03d78246db5c320f29607871d43.tar.lz hypervideo-pre-6011dd9539eae03d78246db5c320f29607871d43.tar.xz hypervideo-pre-6011dd9539eae03d78246db5c320f29607871d43.zip |
[postprocessor/embedthumbnail] Fix comments to make flake8 happy
-rw-r--r-- | youtube_dl/postprocessor/embedthumbnail.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/postprocessor/embedthumbnail.py b/youtube_dl/postprocessor/embedthumbnail.py index 7673b4fd1..ebf7ea27b 100644 --- a/youtube_dl/postprocessor/embedthumbnail.py +++ b/youtube_dl/postprocessor/embedthumbnail.py @@ -41,17 +41,17 @@ class EmbedThumbnailPP(FFmpegPostProcessor): 'Skipping embedding the thumbnail because the file is missing.') return [], info - #Check for mislabeled webp file + # 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 + 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 a jpg or png thumbnail, convert it to jpg using ffmpeg if not os.path.splitext(thumbnail_filename)[1].lower() in ['.jpg', '.png']: jpg_thumbnail_filename = os.path.splitext(thumbnail_filename)[0] + ".jpg" |