aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/postprocessor/embedthumbnail.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2022-04-10 07:57:14 +0800
committerJesús <heckyel@hyperbola.info>2022-04-10 07:57:14 +0800
commitc8046abd97bae36fa50320c32843cf6141752f93 (patch)
tree1dd684a1936a08e7d5229dfb99f2d6d7fb604559 /yt_dlp/postprocessor/embedthumbnail.py
parent40748dd6d0bb053a1c90bcfe874d3cee4b306744 (diff)
parentca5300c7edadad46ede0249ad9fa8feaa4ccddd4 (diff)
downloadhypervideo-pre-c8046abd97bae36fa50320c32843cf6141752f93.tar.lz
hypervideo-pre-c8046abd97bae36fa50320c32843cf6141752f93.tar.xz
hypervideo-pre-c8046abd97bae36fa50320c32843cf6141752f93.zip
updated from upstream | 10/04/2022 at 07:57
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 84ab54f44..057007f2e 100644
--- a/yt_dlp/postprocessor/embedthumbnail.py
+++ b/yt_dlp/postprocessor/embedthumbnail.py
@@ -101,7 +101,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
success = True
if info['ext'] == 'mp3':
options = [
- '-c', 'copy', '-map', '0:0', '-map', '1:0', '-id3v2_version', '3',
+ '-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)"']
self._report_run('ffmpeg', filename)