diff --git a/icedreammusic/liquidsoap/settings.liq b/icedreammusic/liquidsoap/settings.liq index 5a662a0..71f4448 100644 --- a/icedreammusic/liquidsoap/settings.liq +++ b/icedreammusic/liquidsoap/settings.liq @@ -1,5 +1,8 @@ stream_name=getenv(default="Spontaneously live in the mix", "STREAM_NAME") +stream_description=getenv(default="", "STREAM_DESCRIPTION") + internal_icecast_username=getenv(default="source", "INTERNAL_ICECAST_USERNAME") internal_icecast_password=getenv(default="source", "INTERNAL_ICECAST_PASSWORD") + rektfm_username=getenv("REKTNETWORK_USERNAME") rektfm_password=getenv("REKTNETWORK_PASSWORD") diff --git a/icedreammusic/liquidsoap/stream.liq b/icedreammusic/liquidsoap/stream.liq index 5ada7d7..0973180 100644 --- a/icedreammusic/liquidsoap/stream.liq +++ b/icedreammusic/liquidsoap/stream.liq @@ -38,7 +38,8 @@ internal_icecast=output.icecast( host="127.0.0.1", user=internal_icecast_username, password=internal_icecast_password, - name=stream_name) + name=stream_name, + description=stream_description) setup_harbor_stream_api(internal_icecast( id="out_a_int", %ffmpeg(format="ogg", %audio.copy), @@ -58,6 +59,7 @@ if string.length(rektfm_username) > 0 and string.length(rektfm_password) > 0 the host="stream.rekt.fm", user=rektfm_username, name=stream_name, + description=stream_description, password=rektfm_password, start=false, a_flac))