mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
parent
5f549d4959
commit
ca5db158ae
@ -294,7 +294,9 @@ def real_run_ffmpeg(self, input_path_opts, output_path_opts, *, expected_retcode
|
||||
|
||||
def make_args(file, args, name, number):
|
||||
keys = ['_%s%d' % (name, number), '_%s' % name]
|
||||
if name == 'o' and number == 1:
|
||||
if name == 'o':
|
||||
args += ['-movflags', '+faststart']
|
||||
elif number == 1:
|
||||
keys.append('')
|
||||
args += self._configuration_args(self.basename, keys)
|
||||
if name == 'i':
|
||||
@ -368,7 +370,7 @@ def concat_files(self, in_files, out_file, concat_opts=None):
|
||||
out_flags = ['-c', 'copy']
|
||||
if out_file.rpartition('.')[-1] in ('mp4', 'mov'):
|
||||
# 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:
|
||||
self.real_run_ffmpeg(
|
||||
@ -571,10 +573,7 @@ class FFmpegVideoRemuxerPP(FFmpegVideoConvertorPP):
|
||||
|
||||
@staticmethod
|
||||
def _options(target_ext):
|
||||
options = ['-c', 'copy', '-map', '0', '-dn']
|
||||
if target_ext in ['mp4', 'm4a', 'mov']:
|
||||
options.extend(['-movflags', '+faststart'])
|
||||
return options
|
||||
return ['-c', 'copy', '-map', '0', '-dn']
|
||||
|
||||
|
||||
class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
|
||||
|
Loading…
Reference in New Issue
Block a user