Revert "[ffmpeg] Fix embedding subtitles (#9063)"
[youtube-dl] / youtube_dl / postprocessor / ffmpeg.py
index c1e9eb159ed9c2f969ad2ae3b9f90847b83cd98d..fa99b0c2a6aa4d39fbffdcbafd4926431794c55b 100644 (file)
@@ -363,10 +363,8 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
         input_files = [filename] + sub_filenames
 
         opts = [
-            '-map', '0:v',
-            '-c:v', 'copy',
-            '-map', '0:a',
-            '-c:a', 'copy',
+            '-map', '0',
+            '-c', 'copy',
             # Don't copy the existing subtitles, we may be running the
             # postprocessor a second time
             '-map', '-0:s',