mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	FFmpegMetadataPP: don't enclose the values with " (fixes #1756)
This commit is contained in:
		@@ -501,7 +501,7 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        options = ['-c', 'copy']
 | 
					        options = ['-c', 'copy']
 | 
				
			||||||
        for (name, value) in metadata.items():
 | 
					        for (name, value) in metadata.items():
 | 
				
			||||||
            options.extend(['-metadata', '%s="%s"' % (name, value)])
 | 
					            options.extend(['-metadata', '%s=%s' % (name, value)])
 | 
				
			||||||
        options.extend(['-f', ext])
 | 
					        options.extend(['-f', ext])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        self._downloader.to_screen(u'[ffmpeg] Adding metadata to \'%s\'' % filename)
 | 
					        self._downloader.to_screen(u'[ffmpeg] Adding metadata to \'%s\'' % filename)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user