mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Make input/output cmd-line args deterministically sorted
This commit is contained in:
parent
f4025b464f
commit
525b1bf452
@ -23,6 +23,16 @@ def _get_stream_name(name):
|
||||
return '[{}]'.format(name)
|
||||
|
||||
|
||||
def _convert_kwargs_to_cmd_line_args(kwargs):
|
||||
args = []
|
||||
for k in sorted(kwargs.keys()):
|
||||
v = kwargs[k]
|
||||
args.append('-{}'.format(k))
|
||||
if v:
|
||||
args.append('{}'.format(v))
|
||||
return args
|
||||
|
||||
|
||||
def _get_input_args(input_node):
|
||||
if input_node._name == input.__name__:
|
||||
kwargs = copy.copy(input_node._kwargs)
|
||||
@ -34,10 +44,7 @@ def _get_input_args(input_node):
|
||||
args += ['-f', fmt]
|
||||
if video_size:
|
||||
args += ['-video_size', '{}x{}'.format(video_size[0], video_size[1])]
|
||||
for k, v in kwargs.items():
|
||||
args.append('-{}'.format(k))
|
||||
if v:
|
||||
args.append('{}'.format(v))
|
||||
args += _convert_kwargs_to_cmd_line_args(kwargs)
|
||||
args += ['-i', filename]
|
||||
else:
|
||||
assert False, 'Unsupported input node: {}'.format(input_node)
|
||||
@ -95,13 +102,9 @@ def _get_output_args(node, stream_name_map):
|
||||
kwargs = copy.copy(node._kwargs)
|
||||
filename = kwargs.pop('filename')
|
||||
fmt = kwargs.pop('format', None)
|
||||
|
||||
if fmt:
|
||||
args += ['-f', fmt]
|
||||
for k, v in kwargs.items():
|
||||
args.append('-{}'.format(k))
|
||||
if v:
|
||||
args.append('{}'.format(v))
|
||||
args += _convert_kwargs_to_cmd_line_args(kwargs)
|
||||
args += [filename]
|
||||
else:
|
||||
assert False, 'Unsupported output node: {}'.format(node)
|
||||
|
@ -187,8 +187,8 @@ def test_pipe():
|
||||
assert args == [
|
||||
'-f', 'rawvideo',
|
||||
'-video_size', '{}x{}'.format(width, height),
|
||||
'-pixel_format', 'rgb24',
|
||||
'-framerate', '10',
|
||||
'-pixel_format', 'rgb24',
|
||||
'-i', 'pipe:0',
|
||||
'-filter_complex',
|
||||
'[0]trim=start_frame=2[v0]',
|
||||
|
Loading…
x
Reference in New Issue
Block a user