mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-08 09:10:09 +01:00
FFmpegExtractAudioPP: Simplify handling of already existing files
This commit is contained in:
parent
7691a7a3bd
commit
ce81b1411d
@ -264,13 +264,12 @@ def run(self, information):
|
|||||||
new_path = prefix + sep + extension
|
new_path = prefix + sep + extension
|
||||||
|
|
||||||
# If we download foo.mp3 and convert it to... foo.mp3, then don't delete foo.mp3, silly.
|
# If we download foo.mp3 and convert it to... foo.mp3, then don't delete foo.mp3, silly.
|
||||||
if new_path == path:
|
if (new_path == path or
|
||||||
self._nopostoverwrites = True
|
(self._nopostoverwrites and os.path.exists(encodeFilename(new_path)))):
|
||||||
|
self._downloader.to_screen('[youtube] Post-process file %s exists, skipping' % new_path)
|
||||||
|
return True, information
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if self._nopostoverwrites and os.path.exists(encodeFilename(new_path)):
|
|
||||||
self._downloader.to_screen('[youtube] Post-process file %s exists, skipping' % new_path)
|
|
||||||
else:
|
|
||||||
self._downloader.to_screen('[' + self.basename + '] Destination: ' + new_path)
|
self._downloader.to_screen('[' + self.basename + '] Destination: ' + new_path)
|
||||||
self.run_ffmpeg(path, new_path, acodec, more_opts)
|
self.run_ffmpeg(path, new_path, acodec, more_opts)
|
||||||
except AudioConversionError as e:
|
except AudioConversionError as e:
|
||||||
@ -286,7 +285,7 @@ def run(self, information):
|
|||||||
errnote='Cannot update utime of audio file')
|
errnote='Cannot update utime of audio file')
|
||||||
|
|
||||||
information['filepath'] = new_path
|
information['filepath'] = new_path
|
||||||
return self._nopostoverwrites, information
|
return False, information
|
||||||
|
|
||||||
|
|
||||||
class FFmpegVideoConvertorPP(FFmpegPostProcessor):
|
class FFmpegVideoConvertorPP(FFmpegPostProcessor):
|
||||||
|
Loading…
Reference in New Issue
Block a user