Browse Source

we don't need to run ffmpeg more times

master
pulpe 10 years ago
committed by Jaime Marquínez Ferrándiz
parent
commit
784763c565
1 changed files with 2 additions and 1 deletions
  1. 3
      youtube_dl/__init__.py

3
youtube_dl/__init__.py

@ -808,7 +808,8 @@ def _real_main(argv=None):
if opts.xattrs:
ydl.add_post_processor(XAttrMetadataPP())
if opts.embedthumbnail:
ydl.add_post_processor(FFmpegAudioFixPP())
if not opts.addmetadata:
ydl.add_post_processor(FFmpegAudioFixPP())
ydl.add_post_processor(AtomicParsleyPP())
# Update version

Loading…
Cancel
Save