mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
#1: add tests for ffmpeg.run with cmd list
This commit is contained in:
parent
a51cfe7f1c
commit
cfe2995bac
@ -106,10 +106,10 @@ def get_args(node):
|
||||
def run(node, cmd='ffmpeg'):
|
||||
"""Run ffmpeg on node graph."""
|
||||
if isinstance(cmd, basestring):
|
||||
args = [cmd]
|
||||
cmd = [cmd]
|
||||
elif type(cmd) != list:
|
||||
args = list(cmd)
|
||||
args += node.get_args()
|
||||
cmd = list(cmd)
|
||||
args = cmd + node.get_args()
|
||||
_subprocess.check_call(args)
|
||||
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
import ffmpeg
|
||||
import os
|
||||
import pytest
|
||||
import subprocess
|
||||
|
||||
|
||||
@ -118,4 +119,21 @@ def test_get_args_complex_filter():
|
||||
|
||||
|
||||
def test_run():
|
||||
ffmpeg.run(_get_complex_filter_example())
|
||||
node = _get_complex_filter_example()
|
||||
ffmpeg.run(node)
|
||||
|
||||
|
||||
def test_run_dummy_cmd():
|
||||
node = _get_complex_filter_example()
|
||||
ffmpeg.run(node, cmd='true')
|
||||
|
||||
|
||||
def test_run_dummy_cmd_list():
|
||||
node = _get_complex_filter_example()
|
||||
ffmpeg.run(node, cmd=['true', 'ignored'])
|
||||
|
||||
|
||||
def test_run_failing_cmd():
|
||||
node = _get_complex_filter_example()
|
||||
with pytest.raises(subprocess.CalledProcessError):
|
||||
ffmpeg.run(node, cmd='false')
|
||||
|
Loading…
x
Reference in New Issue
Block a user