From 48e9f5939484302e0d0beb80af9d8a6117b09af2 Mon Sep 17 00:00:00 2001 From: Kane York Date: Mon, 13 Jul 2015 13:51:08 -0700 Subject: [PATCH] [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. --- youtube_dl/postprocessor/ffmpeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py index 1ecce22e7..15568408f 100644 --- a/youtube_dl/postprocessor/ffmpeg.py +++ b/youtube_dl/postprocessor/ffmpeg.py @@ -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: