diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-09 14:29:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-09 14:29:53 +0800 |
commit | 5b6a74856babce30e9e72701259f790322281d3a (patch) | |
tree | d52e4c2d061f69ccf12504bb05666dba0193d7ce /youtube_dl/postprocessor | |
parent | ce43100a0143837432c52fcd156068c3464c4303 (diff) | |
parent | ccff2c404d7ea9f5b21ede8ae57bb79feec7eb94 (diff) |
Merge pull request #9288 from reyyed/issue#9063fix
[ffmpeg] Fix embedding subtitles (#9063)
Diffstat (limited to 'youtube_dl/postprocessor')
-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 fa99b0c2a..c1e9eb159 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', |