···44ICECAST_RELAY_PASSWORD=APasswordForRelaysIGuess
55ICECAST_HOSTNAME=localhost
66ICECAST_MAX_SOURCES=1
77+ICECAST_CHARSET=UTF-8
78STREAM_NAME=Radio
89STREAM_DESC=Our selection of music
910STREAM_URL=https://google.com
+27
script.liq
···11+#!/usr/bin/liquidsoap
22+# This is the EU R128 standard
33+settings.lufs.track_gain_target := -23.
44+# Enable LUFS compute if missing from files
55+enable_lufs_track_gain_metadata()
66+77+# Enable the autocue metadata resolver
88+enable_autocue_metadata()
99+1010+# Playlist
1111+i_playlist = crossfade(
1212+ duration=3.0,
1313+1414+1515+ start_blank=true,
1616+ max_blank=1.0,
1717+ threshold=-45.0,
1818+ normalize_track_gain(
1919+ playlist(
2020+ mode="randomize",
2121+ reload=1,
2222+ reload_mode="rounds",
2323+ "/music"
2424+ )
2525+ )
2626+ )
2727+)