1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-18 09:49:36 +00:00

FFmpegMetadataPP: don't enclose the values with " (fixes #1756)

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-11-12 20:38:13 +01:00
parent eb0a839866
commit 72b18c5d34

View file

@ -501,7 +501,7 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
options = ['-c', 'copy']
for (name, value) in metadata.items():
options.extend(['-metadata', '%s="%s"' % (name, value)])
options.extend(['-metadata', '%s=%s' % (name, value)])
options.extend(['-f', ext])
self._downloader.to_screen(u'[ffmpeg] Adding metadata to \'%s\'' % filename)