mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	FFmpegEmbedSubtitlePP: don't fail if the video doesn't have an audio stream (fixes #4718)
Instead of specifying which streams ffmpeg must copy, we tell it to copy all.
This commit is contained in:
		| @@ -475,7 +475,13 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor): | |||||||
|         filename = information['filepath'] |         filename = information['filepath'] | ||||||
|         input_files = [filename] + [subtitles_filename(filename, lang, self._subformat) for lang in sub_langs] |         input_files = [filename] + [subtitles_filename(filename, lang, self._subformat) for lang in sub_langs] | ||||||
|  |  | ||||||
|         opts = ['-map', '0:0', '-map', '0:1', '-c:v', 'copy', '-c:a', 'copy'] |         opts = [ | ||||||
|  |             '-map', '0', | ||||||
|  |             '-c', 'copy', | ||||||
|  |             # Don't copy the existing subtitles, we may be running the | ||||||
|  |             # postprocessor a second time | ||||||
|  |             '-map', '-0:s', | ||||||
|  |         ] | ||||||
|         for (i, lang) in enumerate(sub_langs): |         for (i, lang) in enumerate(sub_langs): | ||||||
|             opts.extend(['-map', '%d:0' % (i + 1), '-c:s:%d' % i, 'mov_text']) |             opts.extend(['-map', '%d:0' % (i + 1), '-c:s:%d' % i, 'mov_text']) | ||||||
|             lang_code = self._conver_lang_code(lang) |             lang_code = self._conver_lang_code(lang) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user