mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
commit
4974364d17
@ -199,6 +199,7 @@ def run_async(
|
|||||||
pipe_stderr=False,
|
pipe_stderr=False,
|
||||||
quiet=False,
|
quiet=False,
|
||||||
overwrite_output=False,
|
overwrite_output=False,
|
||||||
|
cwd=None
|
||||||
):
|
):
|
||||||
"""Asynchronously invoke ffmpeg for the supplied node graph.
|
"""Asynchronously invoke ffmpeg for the supplied node graph.
|
||||||
|
|
||||||
@ -285,7 +286,8 @@ def run_async(
|
|||||||
stderr_stream = subprocess.STDOUT
|
stderr_stream = subprocess.STDOUT
|
||||||
stdout_stream = subprocess.DEVNULL
|
stdout_stream = subprocess.DEVNULL
|
||||||
return subprocess.Popen(
|
return subprocess.Popen(
|
||||||
args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream
|
args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream,
|
||||||
|
cwd=cwd
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -298,6 +300,7 @@ def run(
|
|||||||
input=None,
|
input=None,
|
||||||
quiet=False,
|
quiet=False,
|
||||||
overwrite_output=False,
|
overwrite_output=False,
|
||||||
|
cwd=None
|
||||||
):
|
):
|
||||||
"""Invoke ffmpeg for the supplied node graph.
|
"""Invoke ffmpeg for the supplied node graph.
|
||||||
|
|
||||||
@ -321,6 +324,7 @@ def run(
|
|||||||
pipe_stderr=capture_stderr,
|
pipe_stderr=capture_stderr,
|
||||||
quiet=quiet,
|
quiet=quiet,
|
||||||
overwrite_output=overwrite_output,
|
overwrite_output=overwrite_output,
|
||||||
|
cwd=cwd
|
||||||
)
|
)
|
||||||
out, err = process.communicate(input)
|
out, err = process.communicate(input)
|
||||||
retcode = process.poll()
|
retcode = process.poll()
|
||||||
|
@ -441,12 +441,14 @@ def test__compile():
|
|||||||
@pytest.mark.parametrize('pipe_stdin', [True, False])
|
@pytest.mark.parametrize('pipe_stdin', [True, False])
|
||||||
@pytest.mark.parametrize('pipe_stdout', [True, False])
|
@pytest.mark.parametrize('pipe_stdout', [True, False])
|
||||||
@pytest.mark.parametrize('pipe_stderr', [True, False])
|
@pytest.mark.parametrize('pipe_stderr', [True, False])
|
||||||
def test__run_async(mocker, pipe_stdin, pipe_stdout, pipe_stderr):
|
@pytest.mark.parametrize('cwd', [None, '/tmp'])
|
||||||
|
def test__run_async(mocker, pipe_stdin, pipe_stdout, pipe_stderr, cwd):
|
||||||
process__mock = mock.Mock()
|
process__mock = mock.Mock()
|
||||||
popen__mock = mocker.patch.object(subprocess, 'Popen', return_value=process__mock)
|
popen__mock = mocker.patch.object(subprocess, 'Popen', return_value=process__mock)
|
||||||
stream = _get_simple_example()
|
stream = _get_simple_example()
|
||||||
process = ffmpeg.run_async(
|
process = ffmpeg.run_async(
|
||||||
stream, pipe_stdin=pipe_stdin, pipe_stdout=pipe_stdout, pipe_stderr=pipe_stderr
|
stream, pipe_stdin=pipe_stdin, pipe_stdout=pipe_stdout,
|
||||||
|
pipe_stderr=pipe_stderr, cwd=cwd
|
||||||
)
|
)
|
||||||
assert process is process__mock
|
assert process is process__mock
|
||||||
|
|
||||||
@ -456,7 +458,8 @@ def test__run_async(mocker, pipe_stdin, pipe_stdout, pipe_stderr):
|
|||||||
(args,), kwargs = popen__mock.call_args
|
(args,), kwargs = popen__mock.call_args
|
||||||
assert args == ffmpeg.compile(stream)
|
assert args == ffmpeg.compile(stream)
|
||||||
assert kwargs == dict(
|
assert kwargs == dict(
|
||||||
stdin=expected_stdin, stdout=expected_stdout, stderr=expected_stderr
|
stdin=expected_stdin, stdout=expected_stdout, stderr=expected_stderr,
|
||||||
|
cwd=cwd
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user