diff options
| author | Wang Jun Tham <bouncerox@gmail.com> | 2016-04-24 00:08:02 +0800 | 
|---|---|---|
| committer | Wang Jun Tham <bouncerox@gmail.com> | 2016-04-24 00:08:02 +0800 | 
| commit | ccff2c404d7ea9f5b21ede8ae57bb79feec7eb94 (patch) | |
| tree | 070bca4eb6169693c97dc8e4f63a0e9de5435c00 | |
| parent | 5448b781f697af2c0ea2efe8e553e2049d4de047 (diff) | |
[ffmpeg] Fix embedding subtitles (#9063)
Changed command line parameters for ffmpeg when embedding subtitles.
Changed to ‘-map 0:v -c:v copy -map 0:a -c:a copy’
| -rw-r--r-- | youtube_dl/postprocessor/ffmpeg.py | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py index 1793a878c..ca2d401f8 100644 --- a/youtube_dl/postprocessor/ffmpeg.py +++ b/youtube_dl/postprocessor/ffmpeg.py @@ -363,8 +363,10 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):          input_files = [filename] + sub_filenames          opts = [ -            '-map', '0', -            '-c', 'copy', +            '-map', '0:v', +            '-c:v', 'copy', +            '-map', '0:a', +            '-c:a', 'copy',              # Don't copy the existing subtitles, we may be running the              # postprocessor a second time              '-map', '-0:s', | 
