mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	| @@ -294,7 +294,9 @@ class FFmpegPostProcessor(PostProcessor): | |||||||
|  |  | ||||||
|         def make_args(file, args, name, number): |         def make_args(file, args, name, number): | ||||||
|             keys = ['_%s%d' % (name, number), '_%s' % name] |             keys = ['_%s%d' % (name, number), '_%s' % name] | ||||||
|             if name == 'o' and number == 1: |             if name == 'o': | ||||||
|  |                 args += ['-movflags', '+faststart'] | ||||||
|  |             elif number == 1: | ||||||
|                 keys.append('') |                 keys.append('') | ||||||
|             args += self._configuration_args(self.basename, keys) |             args += self._configuration_args(self.basename, keys) | ||||||
|             if name == 'i': |             if name == 'i': | ||||||
| @@ -368,7 +370,7 @@ class FFmpegPostProcessor(PostProcessor): | |||||||
|         out_flags = ['-c', 'copy'] |         out_flags = ['-c', 'copy'] | ||||||
|         if out_file.rpartition('.')[-1] in ('mp4', 'mov'): |         if out_file.rpartition('.')[-1] in ('mp4', 'mov'): | ||||||
|             # For some reason, '-c copy' is not enough to copy subtitles |             # For some reason, '-c copy' is not enough to copy subtitles | ||||||
|             out_flags.extend(['-c:s', 'mov_text', '-movflags', '+faststart']) |             out_flags.extend(['-c:s', 'mov_text']) | ||||||
|  |  | ||||||
|         try: |         try: | ||||||
|             self.real_run_ffmpeg( |             self.real_run_ffmpeg( | ||||||
| @@ -571,10 +573,7 @@ class FFmpegVideoRemuxerPP(FFmpegVideoConvertorPP): | |||||||
|  |  | ||||||
|     @staticmethod |     @staticmethod | ||||||
|     def _options(target_ext): |     def _options(target_ext): | ||||||
|         options = ['-c', 'copy', '-map', '0', '-dn'] |         return ['-c', 'copy', '-map', '0', '-dn'] | ||||||
|         if target_ext in ['mp4', 'm4a', 'mov']: |  | ||||||
|             options.extend(['-movflags', '+faststart']) |  | ||||||
|         return options |  | ||||||
|  |  | ||||||
|  |  | ||||||
| class FFmpegEmbedSubtitlePP(FFmpegPostProcessor): | class FFmpegEmbedSubtitlePP(FFmpegPostProcessor): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan