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