_____  

From: Захар [mailto:[email protected]] 



 

Hi, 
unfortunately I do not speak English, so I use the translator of google

 

I can not deal with running the script 
  now print the script :

-------------------------------------------

#!/usr/bin/liquidsoap

 

# Lines starting with # are comments, they are ignored.

 

# Put the log file in some directory where

# you have permission to write.

set("log.file.path","/tmp/<script>.log")

# Print log messages to the console,

# can also be done by passing the -v option to liquidsoap.

set("log.stdout", true)

# Use the telnet server for requests

set("server.telnet", true)

 

# A bunch of files and playlists,

# supposedly all located in the same base dir.

 

default = single("/music/jingls/julijingl.mp3")

 

day     = playlist("/music/day.pls")

night   = playlist("/music/night.pls")

jingles = playlist("/music/jingles.pls")

 

clock   = single("/music/clock.mp3")

start   = single("/music/live_start.mp3")

stop    = single("/music/live_stop.mp3")

 

# Play user requests if there are any,

# otherwise one of our playlists,

# and the default file if anything goes wrong.

radio = fallback([ request.queue(id="request"),

                            switch([({ 6h-22h }, day),

                                    ({ 22h-6h }, night)]),

                            default])

# Add the normal jingles

radio = random(weights=[1,5],[ jingles, radio ])

# And the clock jingle

radio = add([radio, switch([({0m0s},clock)])])

 

# Add the ability to relay live shows

full =

  fallback(track_sensitive=false,

           [input.http("http://localhost:8777/online";),

            radio])

 

# Output the full stream in OGG and MP3

output.icecast.mp3(

  host="localhost",port=8777,password="**********",

  mount="live",full)

 

----------------------------------------------------------------------------
------

when I start all of this ; /etc/init.d/liquidsoap start

---

Result :  Starting channels: neformatnoe.liq line--, char-before ")";
Unbound symbol output.icecast.mp3!

 

What am I doing wrong? 
Sincerely, DJ Zuher

 

------------------------------------------------------------------------------
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to