diff --git a/player/counting.stream.liq b/player/counting.stream.liq new file mode 100644 index 0000000..c06185c --- /dev/null +++ b/player/counting.stream.liq @@ -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) diff --git a/player/noise.file.liq b/player/noise.file.liq new file mode 100644 index 0000000..040355b --- /dev/null +++ b/player/noise.file.liq @@ -0,0 +1,5 @@ +set("log.file",false) +set("log.stdout",true) + +myradio = noise() +output.file(%vorbis, "noise.ogg", myradio) diff --git a/player/numbers.txt b/player/numbers.txt new file mode 100644 index 0000000..cfed3be --- /dev/null +++ b/player/numbers.txt @@ -0,0 +1,8 @@ + one + two + three + four + five + six + seven + eight diff --git a/player/playlist.file.liq b/player/playlist.file.liq new file mode 100644 index 0000000..f0a1487 --- /dev/null +++ b/player/playlist.file.liq @@ -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)