mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
commit
5b813cdecf
@ -131,6 +131,16 @@ def get_args(stream_spec, overwrite_output=False):
|
|||||||
return args
|
return args
|
||||||
|
|
||||||
|
|
||||||
|
@output_operator()
|
||||||
|
def compile(stream_spec, cmd='ffmpeg', **kwargs):
|
||||||
|
"""Build command-line for ffmpeg."""
|
||||||
|
if isinstance(cmd, basestring):
|
||||||
|
cmd = [cmd]
|
||||||
|
elif type(cmd) != list:
|
||||||
|
cmd = list(cmd)
|
||||||
|
return cmd + get_args(stream_spec, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
@output_operator()
|
@output_operator()
|
||||||
def run(stream_spec, cmd='ffmpeg', **kwargs):
|
def run(stream_spec, cmd='ffmpeg', **kwargs):
|
||||||
"""Run ffmpeg on node graph.
|
"""Run ffmpeg on node graph.
|
||||||
@ -138,15 +148,11 @@ def run(stream_spec, cmd='ffmpeg', **kwargs):
|
|||||||
Args:
|
Args:
|
||||||
**kwargs: keyword-arguments passed to ``get_args()`` (e.g. ``overwrite_output=True``).
|
**kwargs: keyword-arguments passed to ``get_args()`` (e.g. ``overwrite_output=True``).
|
||||||
"""
|
"""
|
||||||
if isinstance(cmd, basestring):
|
_subprocess.check_call(compile(stream_spec, cmd, **kwargs))
|
||||||
cmd = [cmd]
|
|
||||||
elif type(cmd) != list:
|
|
||||||
cmd = list(cmd)
|
|
||||||
args = cmd + get_args(stream_spec, **kwargs)
|
|
||||||
_subprocess.check_call(args)
|
|
||||||
|
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
|
'compile',
|
||||||
'get_args',
|
'get_args',
|
||||||
'run',
|
'run',
|
||||||
]
|
]
|
||||||
|
@ -219,6 +219,12 @@ def test_filter_text_arg_str_escape():
|
|||||||
# subprocess.check_call(['ffmpeg', '-version'])
|
# subprocess.check_call(['ffmpeg', '-version'])
|
||||||
|
|
||||||
|
|
||||||
|
def test_compile():
|
||||||
|
out_file = ffmpeg.input('dummy.mp4').output('dummy2.mp4')
|
||||||
|
assert out_file.compile() == ['ffmpeg', '-i', 'dummy.mp4', 'dummy2.mp4']
|
||||||
|
assert out_file.compile(cmd='ffmpeg.old') == ['ffmpeg.old', '-i', 'dummy.mp4', 'dummy2.mp4']
|
||||||
|
|
||||||
|
|
||||||
def test_run():
|
def test_run():
|
||||||
stream = _get_complex_filter_example()
|
stream = _get_complex_filter_example()
|
||||||
ffmpeg.run(stream)
|
ffmpeg.run(stream)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user