about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-08-23 18:17:43 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-08-23 18:17:43 +0200
commit9af73dc4fc7dc54def861f94f9db4399b8bf928e (patch)
treee13aa3210cc2b37630bcca4b686c42d024d1a7fc
parentfc483bb6af4bce923c65a67618019a72071f30ff (diff)
downloadyoutube-dl-9af73dc4fc7dc54def861f94f9db4399b8bf928e.tar.gz
youtube-dl-9af73dc4fc7dc54def861f94f9db4399b8bf928e.tar.xz
youtube-dl-9af73dc4fc7dc54def861f94f9db4399b8bf928e.zip
Print a message before embedding the subtitles
-rw-r--r--youtube_dl/PostProcessor.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/PostProcessor.py b/youtube_dl/PostProcessor.py
index 336a42559..c02ed7148 100644
--- a/youtube_dl/PostProcessor.py
+++ b/youtube_dl/PostProcessor.py
@@ -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))