From d9fd04a5c2fce4b31f54fcd3944f5490cd034168 Mon Sep 17 00:00:00 2001 From: Davide Depau Date: Thu, 25 Jan 2018 12:25:42 +0100 Subject: [PATCH] Add tests for SourceNode --- ffmpeg/tests/test_ffmpeg.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/ffmpeg/tests/test_ffmpeg.py b/ffmpeg/tests/test_ffmpeg.py index 1380fdb..5405182 100644 --- a/ffmpeg/tests/test_ffmpeg.py +++ b/ffmpeg/tests/test_ffmpeg.py @@ -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(): width = 32 height = 32