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.

22 lines
587 B
Plaintext

4 years ago
#!/usr/bin/liquidsoap -v
set("log.file.path","/tmp/<script>.log")
set("log.stdout",true)
4 years ago
%include "passwords.liq"
toneseq =
4 years ago
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)
])
4 years ago
output.icecast(%vorbis,
host = ICECAST_SERVER_HOST, port = ICECAST_SERVER_PORT,
password = ICECAST_SERVER_PASSWORD, mount = "radioimplicancies_live.ogg",
mksafe(toneseq))