Skip to content

Instantly share code, notes, and snippets.

@ZiTAL
Created February 28, 2025 15:14
Show Gist options
  • Save ZiTAL/d4c8d5107544b5704a5de65c8fe44328 to your computer and use it in GitHub Desktop.
Save ZiTAL/d4c8d5107544b5704a5de65c8fe44328 to your computer and use it in GitHub Desktop.
liquidsoap example
#!/usr/bin/env liquidsoap
host="localhost"
passwd="passwd"
mount="/stream.mp3"
p="a.m3u"
settings.log.file.set(false)
radio = playlist(mode="reload", p)
silence = single("silence.mp3")
radio = fallback(track_sensitive = false, [radio, silence])
radio = normalize(radio)
output.icecast(
%mp3(bitrate=128, samplerate=44100, stereo=true),
host=host,
port=8000,
password=passwd,
mount=mount,
name="My Radio",
description="Liquidsoap radio",
genre="Mix",
url="http://localhost",
public=true,
radio
)
#EXTM3U
#EXTINF:10, Su ta Gar - Begira
01.mp3
#EXTINF:10, Su ta Gar - Sistematik ihes
02.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment