diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-03-28 17:30:46 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-03-28 17:44:22 +0100 |
commit | 0adc93ba2b4c86bb0b5e0587df1f9c543f5232b6 (patch) | |
tree | 65768063aa45bde2ab4462114ea63405e8f79dc7 /tests/filtergraphs/concat | |
parent | b1213c911c53f30d5b3d8b58a356eeec06753f5d (diff) | |
download | ffmpeg-0adc93ba2b4c86bb0b5e0587df1f9c543f5232b6.tar.gz |
fate/filter: move concat filtergraph to a dedicated script.
Diffstat (limited to 'tests/filtergraphs/concat')
-rw-r--r-- | tests/filtergraphs/concat | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/filtergraphs/concat b/tests/filtergraphs/concat new file mode 100644 index 0000000000..26bca14c3a --- /dev/null +++ b/tests/filtergraphs/concat @@ -0,0 +1,8 @@ +testsrc=r=5:n=1:d=2 [v1]; +sine=440:b=2:d=1 [a1]; +testsrc=r=5:n=1:d=1 [v2]; +sine=622:b=2:d=2 [a2]; +testsrc=r=5:n=1:d=1 [v3]; +sine=880:b=2:d=1 [a3]; + +[v1][a1][v2][a2][v3][a3] concat=v=1:a=1:n=3 |