diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-02-06 18:58:18 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-02-06 18:58:18 +0100 | 
| commit | 3547d26587214f0e8ade1295dab0438d88a567de (patch) | |
| tree | 507135c50d21afd7a0e1ba546a8e76f800593e89 | |
| parent | 7e62c2eb6d13ebf0fdd24c90c2f439177d485081 (diff) | |
[FFmpegSubtitlesConvertorPP] correctly update the extension (fixes #8444)
| -rw-r--r-- | youtube_dl/postprocessor/ffmpeg.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py index 6daa6a8b4..05f2f0623 100644 --- a/youtube_dl/postprocessor/ffmpeg.py +++ b/youtube_dl/postprocessor/ffmpeg.py @@ -523,7 +523,7 @@ class FFmpegSubtitlesConvertorPP(FFmpegPostProcessor):              with io.open(new_file, 'rt', encoding='utf-8') as f:                  subs[lang] = { -                    'ext': ext, +                    'ext': new_ext,                      'data': f.read(),                  }  | 
