Last active
March 6, 2025 09:22
-
-
Save ZiTAL/6bf9052ad643392dc75077e9f7e5268e to your computer and use it in GitHub Desktop.
liquidsoap: reload playlist manually using external connection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
settings.server.telnet.set(true) | |
settings.server.telnet.port.set(1234) | |
settings.server.telnet.bind_addr.set("0.0.0.0") | |
host = "localhost" | |
port = 8000 | |
passwd = "passwd" | |
mount = "/stream.mp3" | |
p = playlist("radio.m3u", reload_mode="manual") | |
silence = blank() | |
radio = fallback(track_sensitive = false, [p, silence]) | |
radio = normalize(radio) | |
def reload_playlist(_) = | |
log("Reloading playlist...") | |
p.reload() | |
"Reloading playlist..." | |
end | |
server.register("reload_playlist", reload_playlist) | |
output.icecast( | |
%mp3(bitrate=128, samplerate=44100, stereo=true), | |
host=host, | |
port=port, | |
password=passwd, | |
mount=mount, | |
name="radio", | |
description="radio desc", | |
genre="Various", | |
url="http://radio.localhost", | |
public=true, | |
radio | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#EXTM3U | |
#EXTINF:120, Sample Video 1 | |
a.mp4 | |
#EXTINF:120, Sample Audio 1 | |
a.mp3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
to reaload playlist from bash:
to install netcat: