1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-06-07 17:24:19 +08:00

[postprocessor/ffmpeg] Change "skipping" to "all done"

A copy change.

This happens when you specify -x for a YT video and an acceptable format (.m4a)
could be downloaded directly.
This commit is contained in:
Kane York
2015-07-13 13:51:08 -07:00
Unverified
parent 1d1dd597ed
commit 48e9f59394
+1 -1
View File
@@ -265,7 +265,7 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor):
# If we download foo.mp3 and convert it to... foo.mp3, then don't delete foo.mp3, silly.
if (new_path == path or
(self._nopostoverwrites and os.path.exists(encodeFilename(new_path)))):
self._downloader.to_screen('[youtube] Post-process file %s exists, skipping' % new_path)
self._downloader.to_screen('[youtube] Post-process file %s exists, all done' % new_path)
return [], information
try: