diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-08-23 18:17:43 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-08-23 18:17:43 +0200 | 
| commit | 9af73dc4fc7dc54def861f94f9db4399b8bf928e (patch) | |
| tree | e13aa3210cc2b37630bcca4b686c42d024d1a7fc | |
| parent | fc483bb6af4bce923c65a67618019a72071f30ff (diff) | |
Print a message before embedding the subtitles
| -rw-r--r-- | youtube_dl/PostProcessor.py | 1 | 
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)) | 
