aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorBarbu Paul - Gheorghe <barbu.paul.gheorghe@gmail.com>2012-12-24 12:18:20 +0200
committerBarbu Paul - Gheorghe <barbu.paul.gheorghe@gmail.com>2012-12-24 12:53:28 +0200
commitb7298b6e2a41238c3ad1062e1133429c7747cc4c (patch)
tree1478868f98beff8a9622eb0951463a3baa248204 /youtube_dl
parent3e6c3f52a9af9de6c313df542755b93bdc1fd3ab (diff)
downloadyoutube-dl-b7298b6e2a41238c3ad1062e1133429c7747cc4c.tar.xz
not relying on ffmpeg to do the post-processed file checking, instead doing it directly in youtube-dl
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/PostProcessor.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/youtube_dl/PostProcessor.py b/youtube_dl/PostProcessor.py
index 6da24f986..a04828518 100644
--- a/youtube_dl/PostProcessor.py
+++ b/youtube_dl/PostProcessor.py
@@ -108,11 +108,7 @@ class FFmpegExtractAudioPP(PostProcessor):
acodec_opts = []
else:
acodec_opts = ['-acodec', codec]
- if self._nopostoverwrites and self._exes['ffmpeg']:
- overwrite_opts = '-n'
- else:
- overwrite_opts = '-y'
- cmd = ([self._exes['avconv'] or self._exes['ffmpeg'], overwrite_opts, '-i', encodeFilename(path), '-vn']
+ cmd = ([self._exes['avconv'] or self._exes['ffmpeg'], '-y', '-i', encodeFilename(path), '-vn']
+ acodec_opts + more_opts +
['--', encodeFilename(out_path)])
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
@@ -176,9 +172,12 @@ class FFmpegExtractAudioPP(PostProcessor):
prefix, sep, ext = path.rpartition(u'.') # not os.path.splitext, since the latter does not work on unicode in all setups
new_path = prefix + sep + extension
- self._downloader.to_screen(u'[' + (self._exes['avconv'] and 'avconv' or 'ffmpeg') + '] Destination: ' + new_path)
try:
- self.run_ffmpeg(path, new_path, acodec, more_opts)
+ if self._nopostoverwrites and os.path.exists(encodeFilename(new_path)):
+ self._downloader.to_screen(u'[youtube] Post-process file %s exists, skipping' % new_path)
+ else:
+ self._downloader.to_screen(u'[' + (self._exes['avconv'] and 'avconv' or 'ffmpeg') + '] Destination: ' + new_path)
+ self.run_ffmpeg(path, new_path, acodec, more_opts)
except:
etype,e,tb = sys.exc_info()
if isinstance(e, AudioConversionError):