player
parent
f5fbe5d42e
commit
3be5e8bb13
@ -0,0 +1,15 @@
|
||||
set("log.file",false)
|
||||
set("log.stdout",true)
|
||||
|
||||
radio = playlist("counting.m3u")
|
||||
radio = audio_to_stereo(radio)
|
||||
radio = mksafe(radio)
|
||||
|
||||
%include "/srv/radio/passwords.liq"
|
||||
|
||||
output.icecast(%vorbis,
|
||||
host = ICECAST_SERVER_HOST,
|
||||
port = ICECAST_SERVER_PORT,
|
||||
password = ICECAST_SERVER_PASSWORD,
|
||||
mount = "counting.ogg",
|
||||
radio)
|
@ -0,0 +1,5 @@
|
||||
set("log.file",false)
|
||||
set("log.stdout",true)
|
||||
|
||||
myradio = noise()
|
||||
output.file(%vorbis, "noise.ogg", myradio)
|
@ -0,0 +1,8 @@
|
||||
one
|
||||
two
|
||||
three
|
||||
four
|
||||
five
|
||||
six
|
||||
seven
|
||||
eight
|
@ -0,0 +1,5 @@
|
||||
set("log.file",false)
|
||||
set("log.stdout",true)
|
||||
|
||||
myradio = audio_to_stereo(playlist.once("counting.m3u"))
|
||||
output.file(%vorbis, "counting.ogg", myradio, fallible=true)
|
Loading…
Reference in New Issue