mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-19 22:30:06 +01:00
Initial checkin of veejay 1.4
git-svn-id: svn://code.dyne.org/veejay/trunk@1172 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
34
veejay-current/veejay-server/test/examples/demo2.pl
Normal file
34
veejay-current/veejay-server/test/examples/demo2.pl
Normal file
@@ -0,0 +1,34 @@
|
||||
|
||||
# show multi mirrors,
|
||||
# type 0,1 = vertical, 1,2 = horizontal
|
||||
# count is meaningfull below ~30
|
||||
|
||||
for(my $k =0; $k < 2; $k++)
|
||||
{
|
||||
for(my $j = 0; $j < 20; $j ++)
|
||||
{
|
||||
# 1 frame delay before sending message
|
||||
print "+1\n";
|
||||
# preset effect 102 (multi mirrors)
|
||||
# somewhere on the current playing clip/stream
|
||||
# with sequenced parameters 0..3 0..25
|
||||
print "361:0 -1 102 $k $j;\n";
|
||||
|
||||
}
|
||||
}
|
||||
for(my $k =1; $k != 0; $k--)
|
||||
{
|
||||
for(my $j = 20; $j != 0; $j --)
|
||||
{
|
||||
# 1 frame delay before sending message
|
||||
print "+1\n";
|
||||
# preset effect 102 (multi mirrors)
|
||||
# somewhere on the current playing clip/stream
|
||||
# with sequenced parameters 0..3 0..25
|
||||
print "361:0 -1 102 $k $j;\n";
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
print "177:;\n";
|
||||
|
||||
Reference in New Issue
Block a user