An easy way to have a 24/7 audio stream of music.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Try to enable LUFS, autocue, and normalize

+15 -5
+15 -5
script.liq
··· 1 1 #!/usr/bin/liquidsoap 2 + # This is the EU R128 standard 3 + settings.lufs.track_gain_target := -23. 4 + # Enable LUFS compute if missing from files 5 + enable_lufs_track_gain_metadata() 6 + 7 + # Enable the autocue metadata resolver 8 + enable_autocue_metadata() 9 + 2 10 # Playlist 3 11 i_playlist = crossfade( 4 12 duration=3.0, ··· 7 15 start_blank=true, 8 16 max_blank=1.0, 9 17 threshold=-45.0, 10 - playlist( 11 - mode="randomize", 12 - reload=1, 13 - reload_mode="rounds", 14 - "/music" 18 + normalize_track_gain( 19 + playlist( 20 + mode="randomize", 21 + reload=1, 22 + reload_mode="rounds", 23 + "/music" 24 + ) 15 25 ) 16 26 ) 17 27 )