1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-02-03 16:49:48 +00:00

info var does not exist here, is called information instead

This commit is contained in:
Matthias Sweertvaegher 2018-10-16 19:45:11 +02:00
parent e38f28ab00
commit 7a080138ce

View File

@ -390,7 +390,7 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
temp_filename = prepend_extension(filename, 'temp')
self._downloader.to_screen('[ffmpeg] Embedding subtitles in \'%s\'' % filename)
self.run_ffmpeg_multiple_files(input_files, temp_filename, opts, info)
self.run_ffmpeg_multiple_files(input_files, temp_filename, opts, information)
os.remove(encodeFilename(filename))
os.rename(encodeFilename(temp_filename), encodeFilename(filename))