Skip to content
Snippets Groups Projects
Commit cba1aca3 authored by ale's avatar ale
Browse files

make liquidsoap log to radiod stderr

parent 6acb5e16
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,9 @@ var (
liquidsoapBin = flag.String("liquidsoap", "/usr/bin/liquidsoap", "Location of the liquidsoap binary")
liquidsoapConfigStr = `
# Automatically generated config.
set("log.file", false)
set("log.stdout", true)
upstream = mksafe(input.http("{{.SourceURL}}", buffer=5.0))
output.icecast(%{{.Format}}(samplerate={{.SampleRate}}, {{if gt .BitRate 0}}bitrate={{.BitRate}}, {{end}}{{if gt .Quality 0.0}}quality={{.Quality}}, {{end}}{{if eq .Channels 2}}stereo{{else}}mono{{end}}),
mount="{{.TargetMount}}", host="{{.TargetIP}}", port={{.TargetPort}}, password="{{.TargetPassword}}",
......@@ -144,6 +146,8 @@ func (l *liquidsoapController) run() {
}
cmd := exec.Command(*liquidsoapBin, "-T", "-U", "-v", l.configPath)
cmd.Stdout = os.Stderr
cmd.Stderr = os.Stderr
if err := cmd.Start(); err != nil {
log.Printf("error starting liquidsoap: %v", err)
continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment