youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 5b6a74856babce30e9e72701259f790322281d3a
parent ce43100a0143837432c52fcd156068c3464c4303
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Sat,  9 Jul 2016 14:29:53 +0800

Merge pull request #9288 from reyyed/issue#9063fix

[ffmpeg] Fix embedding subtitles (#9063)
Diffstat:
Myoutube_dl/postprocessor/ffmpeg.py | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 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',