aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/postprocessor/embedthumbnail.py
diff options
context:
space:
mode:
authorNoah <10456231+How-Bout-No@users.noreply.github.com>2022-10-07 08:04:27 -0400
committerGitHub <noreply@github.com>2022-10-07 17:34:27 +0530
commite02e6d86dbca8852a8f1df934b8f4a30552060d2 (patch)
treebafbc022f97d3acc298dfc48f28f2418dc9fee75 /yt_dlp/postprocessor/embedthumbnail.py
parent867c66ff97b0639485a2b6ebc28f2e0df0bf8187 (diff)
downloadhypervideo-pre-e02e6d86dbca8852a8f1df934b8f4a30552060d2.tar.lz
hypervideo-pre-e02e6d86dbca8852a8f1df934b8f4a30552060d2.tar.xz
hypervideo-pre-e02e6d86dbca8852a8f1df934b8f4a30552060d2.zip
[embedthumbnail] Fix thumbnail name in mp3 (#5163)
Authored by: How-Bout-No
Diffstat (limited to 'yt_dlp/postprocessor/embedthumbnail.py')
-rw-r--r--yt_dlp/postprocessor/embedthumbnail.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/postprocessor/embedthumbnail.py b/yt_dlp/postprocessor/embedthumbnail.py
index 9ae59a7c3..b02d9d499 100644
--- a/yt_dlp/postprocessor/embedthumbnail.py
+++ b/yt_dlp/postprocessor/embedthumbnail.py
@@ -92,7 +92,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
if info['ext'] == 'mp3':
options = [
'-c', 'copy', '-map', '0:0', '-map', '1:0', '-write_id3v1', '1', '-id3v2_version', '3',
- '-metadata:s:v', 'title="Album cover"', '-metadata:s:v', 'comment="Cover (front)"']
+ '-metadata:s:v', 'title="Album cover"', '-metadata:s:v', 'comment=Cover (front)']
self._report_run('ffmpeg', filename)
self.run_ffmpeg_multiple_files([filename, thumbnail_filename], temp_filename, options)