Skip to content

Instantly share code, notes, and snippets.

@grahams
Created March 8, 2012 20:34
Show Gist options
  • Save grahams/2003266 to your computer and use it in GitHub Desktop.
Save grahams/2003266 to your computer and use it in GitHub Desktop.
fucking with liquidsoap
#!/usr/bin/liquidsoap
# Log dir
set("log.file.path","/tmp/basic-radio.log")
url = "http://radio.dosburros.com:8000/iorek"
input = mksafe(input.http(url))
# Stream it out
output.icecast.lame(
host = "localhost", port = 8000,
password = "passwordgoeshere", mount = "/",
url = "http://radio.dosburros.com/",
input
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment