Created
July 30, 2013 16:43
-
-
Save iliaaw/6114659 to your computer and use it in GitHub Desktop.
Example of LiquidSoap config for https://github.com/ilyakhokhryakov/radio-server
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/liquidsoap | |
set("server.telnet", true) | |
files = playlist( | |
mode = "normal", | |
id = "files", | |
"PATH_TO_PLAYLIST.m3u" | |
) | |
output.icecast( | |
%mp3, | |
id = "stream", | |
host = "localhost", | |
port = 8080, | |
url = "localhost", | |
password = "PASSWORD", | |
mount = "MOUNT_NAME", | |
mksafe(files) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment