You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
369 B
Plaintext
15 lines
369 B
Plaintext
#!/usr/bin/liquidsoap -v
|
|
|
|
set("log.file.path","/tmp/<script>.log")
|
|
set("log.stdout",true)
|
|
|
|
out(
|
|
rotate([
|
|
square(220.0,amplitude=0.02,duration=1.0),
|
|
square(260.0,amplitude=0.02,duration=1.0),
|
|
square(300.0,amplitude=0.02,duration=1.0),
|
|
square(360.0,amplitude=0.02,duration=1.0),
|
|
sine(440.0,amplitude=0.02,duration=1.0)
|
|
])
|
|
)
|