[ffmpeg] Fix embedding subtitles (#9063)
Changed command line parameters for ffmpeg when embedding subtitles. Changed to ‘-map 0:v -c:v copy -map 0:a -c:a copy’
This commit is contained in:
		
							parent
							
								
									5448b781f6
								
							
						
					
					
						commit
						ccff2c404d
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -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',
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue