#!/usr/bin/liquidsoap -v frames = mksafe(playlist("frames.m3u", mode="normal")) rozwell = mksafe(crossfade(fade_in=6.0, fade_out=6.0, playlist("rozwell.m3u", mode="randomize"))) wall = mksafe(playlist("wall.m3u", mode="normal")) lofihiphop = mksafe(playlist("lofiHipHop.m3u", mode="randomize")) output.icecast( %mp3, # Encoder format (e.g., %mp3, %ogg(%vorbis), %ffmpeg(...)) host="localhost", # Icecast server IP address (default is localhost) port=8000, # Icecast server port (default is 8000) password="hunter2", # Source password (default is "hackme" in Icecast config) mount="/lofiHipHop", # Mount point name (must start with /) lofihiphop # The audio source defined above ) output.icecast( %mp3, # Encoder format (e.g., %mp3, %ogg(%vorbis), %ffmpeg(...)) host="localhost", # Icecast server IP address (default is localhost) port=8000, # Icecast server port (default is 8000) password="hunter2", # Source password (default is "hackme" in Icecast config) mount="/frames", # Mount point name (must start with /) frames # The audio source defined above ) output.icecast( %mp3, # Encoder format (e.g., %mp3, %ogg(%vorbis), %ffmpeg(...)) host="localhost", # Icecast server IP address (default is localhost) port=8000, # Icecast server port (default is 8000) password="hunter2", # Source password (default is "hackme" in Icecast config) mount="/rozwell", # Mount point name (must start with /) rozwell # The audio source defined above ) output.icecast( %mp3, # Encoder format (e.g., %mp3, %ogg(%vorbis), %ffmpeg(...)) host="localhost", # Icecast server IP address (default is localhost) port=8000, # Icecast server port (default is 8000) password="hunter2", # Source password (default is "hackme" in Icecast config) mount="/wall", # Mount point name (must start with /) wall # The audio source defined above )