Browse Source

apparently the -n option is available only in ffmpeg

rtmp_test
Barbu Paul - Gheorghe 12 years ago
parent
commit
3e6c3f52a9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/PostProcessor.py

+ 1
- 1
youtube_dl/PostProcessor.py View File

@ -108,7 +108,7 @@ class FFmpegExtractAudioPP(PostProcessor):
acodec_opts = []
else:
acodec_opts = ['-acodec', codec]
if self._nopostoverwrites:
if self._nopostoverwrites and self._exes['ffmpeg']:
overwrite_opts = '-n'
else:
overwrite_opts = '-y'


Loading…
Cancel
Save