Skip to content
代码片段 群组 项目
未验证 提交 ca5db158 编辑于 作者: pukkandan's avatar pukkandan
浏览文件

[postprocessor/ffmpeg] Always add `faststart`

Closes #1491
上级 5f549d49
No related branches found
No related tags found
无相关合并请求
......@@ -294,7 +294,9 @@ class FFmpegPostProcessor(PostProcessor):
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 @@ class FFmpegPostProcessor(PostProcessor):
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):
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册