[postprocessor/ffmpeg] Don't use '[youtube] ...' in messages
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 14 Jul 2015 10:56:32 +0000 (12:56 +0200)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 14 Jul 2015 10:56:32 +0000 (12:56 +0200)
Because it can be used for other extractors.

youtube_dl/postprocessor/ffmpeg.py

index 1ecce22e7eb149ed470eea6ac05b6022e640f3b1..1f723908be8d4ff0247affc5aed9ffc44e777602 100644 (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('[ffmpeg] Post-process file %s exists, skipping' % new_path)
             return [], information
 
         try: