mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
[EmbedThumbnail] Do not remove id3v1 tags
This commit is contained in:
parent
98804d034d
commit
f894294636
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ def run(self, info):
|
|||
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)
|
||||
|
|
Loading…
Reference in a new issue