Merge pull request #9288 from reyyed/issue#9063fix
authorYen Chi Hsuan <yan12125@gmail.com>
Sat, 9 Jul 2016 06:29:53 +0000 (14:29 +0800)
committerGitHub <noreply@github.com>
Sat, 9 Jul 2016 06:29:53 +0000 (14:29 +0800)
[ffmpeg] Fix embedding subtitles (#9063)

youtube_dl/postprocessor/ffmpeg.py

index fa99b0c2a6aa4d39fbffdcbafd4926431794c55b..c1e9eb159ed9c2f969ad2ae3b9f90847b83cd98d 100644 (file)
@@ -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',