This commit is contained in:
Deleted user 2024-05-11 04:34:19 +08:00 committed by GitHub
commit f2daeabf63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor):
if (new_path == path
or (self._nopostoverwrites and os.path.exists(encodeFilename(new_path)))):
self._downloader.to_screen('[ffmpeg] Post-process file %s exists, skipping' % new_path)
return [], information
return [] if new_path == path else [path], information
try:
self._downloader.to_screen('[ffmpeg] Destination: ' + new_path)