Savonet Users,

I have a script that is intended to play a single 60-minute MP3 repeatedly. 
When kicking off the script it works very well; however, it will fail after a 
few hours without any errors or issues listed in the log. In fact, it doesn’t 
even “fallback” to the security track. Instead the stream just stops.

I have found this to be true with any scripts with a single MP3 or any 
playlists with just a few songs. On the same server I have playlists with 
hundreds of songs that have been playing continuously for over 30 days with no 
problems.

Here is my script:

#!/usr/bin/liquidsoap

# Set the directory for the log
set("log.level",5)
set("log.file.path","/tmp/nature.log")

# Activate the telnet server
set("server.telnet",true)
set("server.telnet.port", 7008)

# Define playlist and define the security
radio = single("~/naturemusic/nature.mp3")
security = single("~/music/security.mp3")

# Add the security
radio = fallback(track_sensitive = false, [radio, security])

# Stream it out
output.icecast(%mp3(bitrate=192),host=“…my stream details are here...”)

Any ideas what might be causing this? I greatly appreciate your help!

Thanks,

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

Reply via email to