Browse Source

Print a message before embedding the subtitles

rtmp_test
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
9af73dc4fc
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      youtube_dl/PostProcessor.py

+ 1
- 0
youtube_dl/PostProcessor.py View 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))


Loading…
Cancel
Save