diff options
author | Tom-Oliver Heidel <github@tom-oliver.eu> | 2020-09-01 00:10:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 00:10:23 +0200 |
commit | 1e42995635b88846f0e2ba8d32f8d7d9f979c942 (patch) | |
tree | 9221b39bf919761d07043b4fbf26e7a4bbcfd0a4 /youtube_dl/postprocessor/embedthumbnail.py | |
parent | 90b7b5e12958942bc2ace30635d7d439b2fac23e (diff) | |
parent | f6513e1a9302ab601460133804e0c06f1595279a (diff) | |
download | hypervideo-pre-1e42995635b88846f0e2ba8d32f8d7d9f979c942.tar.lz hypervideo-pre-1e42995635b88846f0e2ba8d32f8d7d9f979c942.tar.xz hypervideo-pre-1e42995635b88846f0e2ba8d32f8d7d9f979c942.zip |
Merge pull request #14 from alexmerkel/webpfix
Webpfix
Diffstat (limited to 'youtube_dl/postprocessor/embedthumbnail.py')
-rw-r--r-- | youtube_dl/postprocessor/embedthumbnail.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/youtube_dl/postprocessor/embedthumbnail.py b/youtube_dl/postprocessor/embedthumbnail.py index 56be914b8..e2002ab0b 100644 --- a/youtube_dl/postprocessor/embedthumbnail.py +++ b/youtube_dl/postprocessor/embedthumbnail.py @@ -41,6 +41,28 @@ class EmbedThumbnailPP(FFmpegPostProcessor): 'Skipping embedding the thumbnail because the file is missing.') return [], info + # 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(encodeFilename(thumbnail_filename), encodeFilename(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']: + jpg_thumbnail_filename = os.path.splitext(thumbnail_filename)[0] + ".jpg" + jpg_thumbnail_filename = os.path.join(os.path.dirname(jpg_thumbnail_filename), os.path.basename(jpg_thumbnail_filename).replace('%', '_')) # ffmpeg interprets % as image sequence + + self._downloader.to_screen('[ffmpeg] Converting thumbnail "%s" to JPEG' % thumbnail_filename) + + self.run_ffmpeg(thumbnail_filename, jpg_thumbnail_filename, ['-bsf:v', 'mjpeg2jpeg']) + + os.remove(encodeFilename(thumbnail_filename)) + thumbnail_filename = jpg_thumbnail_filename + if info['ext'] == 'mp3': options = [ '-c', 'copy', '-map', '0', '-map', '1', |