27 lines
667 B
Text
27 lines
667 B
Text
# denpa-radio liquidsoap script
|
|
# adding a station: copy a station block, rename, restart liquidsoap.
|
|
|
|
settings.log.stdout.set(true)
|
|
settings.log.level.set(3)
|
|
|
|
source_pw = environment.get(default="", "SOURCE_PW")
|
|
|
|
# === station: minecraft ===
|
|
minecraft = playlist(
|
|
reload_mode="watch",
|
|
mode="randomize",
|
|
"/library/minecraft/tracks"
|
|
)
|
|
minecraft = crossfade(minecraft)
|
|
minecraft = mksafe(minecraft)
|
|
|
|
output.icecast(
|
|
%mp3(bitrate=192, stereo=true),
|
|
host="icecast", port=8000, password=source_pw,
|
|
mount="/minecraft.mp3",
|
|
name="Denpa — Minecraft",
|
|
description="Minecraft soundtracks",
|
|
genre="game-ost",
|
|
url="https://denpa.femboy.page",
|
|
minecraft
|
|
)
|