mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-07-18 19:28:31 +00:00
[EmbedThumbnail] Unquote title from MP3 thumbs metadata
https://discord.com/channels/807245652072857610/807245652072857613/1393897464012083292
This commit is contained in:
parent
5d693446e8
commit
59f03e17f3
@ -90,7 +90,7 @@ def run(self, info):
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user