Print a message before embedding the subtitles
[youtube-dl] / youtube_dl / PostProcessor.py
index 336a42559149c68c8033e9838c725cf5e0e9fc68..c02ed7148cbfa953b4e8fed3635bcc50e06e52cb 100644 (file)
@@ -458,6 +458,7 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
         opts.extend(['-f', 'mp4'])
 
         temp_filename = filename + u'.temp'
+        self._downloader.to_screen(u'[ffmpeg] Embedding subtitles in \'%s\'' % filename)
         self.run_ffmpeg_multiple_files(input_files, temp_filename, opts)
         os.remove(encodeFilename(filename))
         os.rename(encodeFilename(temp_filename), encodeFilename(filename))