1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-07-12 05:16:19 +00:00

Merge a696406524a5307886ff3709d76a33ebcb08a80f into c5098961b04ce83f4615f2a846c84f803b072639

This commit is contained in:
Deleted user 2024-08-21 22:21:51 -04:00 committed by GitHub
commit d240a19969
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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