Created
February 28, 2025 15:14
-
-
Save ZiTAL/d4c8d5107544b5704a5de65c8fe44328 to your computer and use it in GitHub Desktop.
liquidsoap example
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
#!/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 | |
) |
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: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