mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Add tests for SourceNode
This commit is contained in:
parent
1cb5abaa25
commit
d9fd04a5c2
@ -316,6 +316,29 @@ def test_multi_passthrough():
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
def test_sources():
|
||||||
|
out = (ffmpeg
|
||||||
|
.overlay(
|
||||||
|
ffmpeg.source("testsrc"),
|
||||||
|
ffmpeg.source("color", color="red@.3"),
|
||||||
|
)
|
||||||
|
.trim(end=5)
|
||||||
|
.output(TEST_OUTPUT_FILE1)
|
||||||
|
)
|
||||||
|
|
||||||
|
assert out.get_args() == [
|
||||||
|
'-filter_complex',
|
||||||
|
'testsrc[s0];'
|
||||||
|
'color=color=red@.3[s1];'
|
||||||
|
'[s0][s1]overlay=eof_action=repeat[s2];'
|
||||||
|
'[s2]trim=end=5[s3]',
|
||||||
|
'-map',
|
||||||
|
'[s3]',
|
||||||
|
TEST_OUTPUT_FILE1
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def test_pipe():
|
def test_pipe():
|
||||||
width = 32
|
width = 32
|
||||||
height = 32
|
height = 32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user