diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-06 21:56:31 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-06 21:56:31 +0600 |
commit | deb85c32bbd32e8d280e1919432a11c0bdaa26bb (patch) | |
tree | 816868980958402375782ae3a6ee8afe77c106db /youtube_dl/postprocessor | |
parent | 92366d189ef280b8ba0057930c54aa14b0ecdd24 (diff) |
[postprocessor/ffmpeg] Use ffmpeg as prefix since it's used all over the places (Closes #7371)
Diffstat (limited to 'youtube_dl/postprocessor')
-rw-r--r-- | youtube_dl/postprocessor/ffmpeg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py index 4f320e124..5ed723bc6 100644 --- a/youtube_dl/postprocessor/ffmpeg.py +++ b/youtube_dl/postprocessor/ffmpeg.py @@ -272,7 +272,7 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor): return [], information try: - self._downloader.to_screen('[' + self.basename + '] Destination: ' + new_path) + self._downloader.to_screen('[ffmpeg] Destination: ' + new_path) self.run_ffmpeg(path, new_path, acodec, more_opts) except AudioConversionError as e: raise PostProcessingError( |