From: Yen Chi Hsuan Date: Sat, 9 Jul 2016 06:29:53 +0000 (+0800) Subject: Merge pull request #9288 from reyyed/issue#9063fix X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=5b6a74856babce30e9e72701259f790322281d3a;hp=ce43100a0143837432c52fcd156068c3464c4303;p=youtube-dl.git Merge pull request #9288 from reyyed/issue#9063fix [ffmpeg] Fix embedding subtitles (#9063) --- 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',