Files
veejay/veejay-2005/test/examples/auto-vj.nl
Niels Elburg c84f6ca821 moved veejay-current to veejay-2005 (branch closed)
git-svn-id: svn://code.dyne.org/veejay/trunk@509 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
2006-01-20 16:43:25 +00:00

31 lines
592 B
Plaintext

# show multi mirrors,
# type 0,1 = vertical, 1,2 = horizontal
# count is meaningfull below ~30
for(my $k =0; $k < 3; $k++)
{
for(my $j = 0; $j < 25; $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 $i = 0 ; $i < 100; $i ++)
{
$max = int(rand(75));
$delay = int(rand(25 + max));
print "+$delay\n";
$type = int(rand( 3 ));
$count =int(rand( 10 ));
print "361:0 -1 102 $type $count;\n"
}