diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-07 12:11:05 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-07 17:22:45 +0530 |
commit | c76eb41bb9e7e0a106ce44f4afcf74b0c00a3fb2 (patch) | |
tree | ed835b466e6350eef3960198a8569f946a79bac0 /youtube_dlc/postprocessor/embedthumbnail.py | |
parent | dbbbe555d7a64ff65de5f8a78cc276a848c2e227 (diff) | |
download | hypervideo-pre-c76eb41bb9e7e0a106ce44f4afcf74b0c00a3fb2.tar.lz hypervideo-pre-c76eb41bb9e7e0a106ce44f4afcf74b0c00a3fb2.tar.xz hypervideo-pre-c76eb41bb9e7e0a106ce44f4afcf74b0c00a3fb2.zip |
Preparing for release
Diffstat (limited to 'youtube_dlc/postprocessor/embedthumbnail.py')
-rw-r--r-- | youtube_dlc/postprocessor/embedthumbnail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/postprocessor/embedthumbnail.py b/youtube_dlc/postprocessor/embedthumbnail.py index f73f93a58..94e3eca98 100644 --- a/youtube_dlc/postprocessor/embedthumbnail.py +++ b/youtube_dlc/postprocessor/embedthumbnail.py @@ -76,7 +76,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor): if info['ext'] == 'mp3': options = [ - '-c', 'copy', '-map', '0:0', '-map', '1:0', '-id3v2_version', '3', + '-c', 'copy', '-map', '0:0', '-map', '1:0', '-id3v2_version', '3', '-metadata:s:v', 'title="Album cover"', '-metadata:s:v', 'comment="Cover (front)"'] self._downloader.to_screen('[ffmpeg] Adding thumbnail to "%s"' % filename) |