浏览代码

[FFmpegSubtitlesConvertorPP] fix not working when srt is used as the intermediate format between ttml/dfxp and other format

It was trying to use the ttml/dfxp file with ffmpeg, which doesn't have support for them.
I broke it in e04398e397d4a4f7e0d0994355d5a94c22441e7c.
Jaime Marquínez Ferrándiz 9 年之前
父节点
当前提交
7e62c2eb6d
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      youtube_dl/postprocessor/ffmpeg.py

+ 1 - 0
youtube_dl/postprocessor/ffmpeg.py

@@ -508,6 +508,7 @@ class FFmpegSubtitlesConvertorPP(FFmpegPostProcessor):
 
 
                 with io.open(srt_file, 'wt', encoding='utf-8') as f:
                 with io.open(srt_file, 'wt', encoding='utf-8') as f:
                     f.write(srt_data)
                     f.write(srt_data)
+                old_file = srt_file
 
 
                 ext = 'srt'
                 ext = 'srt'
                 subs[lang] = {
                 subs[lang] = {