Browse Source

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

master
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
72b18c5d34
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl/PostProcessor.py

2
youtube_dl/PostProcessor.py

@ -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)

Loading…
Cancel
Save