mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	Merge pull request #9288 from reyyed/issue#9063fix
[ffmpeg] Fix embedding subtitles (#9063)
This commit is contained in:
		| @@ -363,8 +363,10 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor): | |||||||
|         input_files = [filename] + sub_filenames |         input_files = [filename] + sub_filenames | ||||||
|  |  | ||||||
|         opts = [ |         opts = [ | ||||||
|             '-map', '0', |             '-map', '0:v', | ||||||
|             '-c', 'copy', |             '-c:v', 'copy', | ||||||
|  |             '-map', '0:a', | ||||||
|  |             '-c:a', 'copy', | ||||||
|             # Don't copy the existing subtitles, we may be running the |             # Don't copy the existing subtitles, we may be running the | ||||||
|             # postprocessor a second time |             # postprocessor a second time | ||||||
|             '-map', '-0:s', |             '-map', '-0:s', | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user