mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 19:29:51 +01:00
fix ffmpeg metadatapp
This commit is contained in:
parent
149254d0d5
commit
39c68260c0
@ -464,7 +464,11 @@ def run(self, info):
|
|||||||
filename = info['filepath']
|
filename = info['filepath']
|
||||||
temp_filename = prepend_extension(filename, 'temp')
|
temp_filename = prepend_extension(filename, 'temp')
|
||||||
|
|
||||||
options = ['-c', 'copy']
|
if info['ext'] == u'm4a':
|
||||||
|
options = ['-vn', '-acodec', 'copy']
|
||||||
|
else:
|
||||||
|
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)])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user