#!/usr/bin/liquidsoap # Log dir set("log.file.path","/var/log/liquidsoap/basic.log") set("log.stdout",true) set("log.level",4) url=mksafe(input.http("ht.tp://xxx:8000/mp3")) #AAC+ output.icecast(%aacplus(channels=2, samplerate=44100, bitrate=64), mount = "aac", host = "localhost", port = 8000, password = "hackme", genre="Rock", description="Rock, Ukrainian Rock", name="xxx Rock", url="xxx", url) #OGG output.icecast(%vorbis (channels=2, samplerate=44100, quality=0.4), icy_metadata="false", mount = "liqogg", host = "localhost", port = 8000, password = "hackme", genre = "Rock", description = "Ogg 128kb\s", name = "Ogg 128kb\s", url = "xxx", url)
2012/12/30 17:48:47 [ht.tp_4618:4] End of track. 2012/12/30 17:48:47 [ogg.muxer:4] liqogg: Setting end of track 309b8ec1. 2012/12/30 17:48:47 [ogg.muxer:4] liqogg: Every ogg logical tracks have ended: setting end of stream. 2012/12/30 17:48:47 [ogg.muxer:4] liqogg: Starting new sequentialized ogg stream. 2012/12/30 17:48:47 [ogg.muxer:4] liqogg: Starting all streams 2012/12/30 17:51:43 [ht.tp_4618:3] New metadata chunk: ? -- Nemo - Р~Sлубина. 2012/12/30 17:51:47 [ht.tp_4618:4] End of track. 2012/12/30 17:51:47 [ogg.muxer:4] liqogg: Setting end of track 1982f4c8. 2012/12/30 17:51:47 [ogg.muxer:4] liqogg: Every ogg logical tracks have ended: setting end of stream. 2012/12/30 17:51:47 [ogg.muxer:4] liqogg: Starting new sequentialized ogg stream. 2012/12/30 17:51:47 [ogg.muxer:4] liqogg: Starting all streams 2012/12/30 17:55:27 [ht.tp_4618:3] New metadata chunk: ? -- JAM ROLL - Р~WдравсС~BРІСѓР№, Р~RРѕС~B Рё СЏ. 2012/12/30 17:55:31 [ht.tp_4618:4] End of track. 2012/12/30 17:55:31 [ogg.muxer:4] liqogg: Setting end of track 32b87d6e. 2012/12/30 17:55:31 [ogg.muxer:4] liqogg: Every ogg logical tracks have ended: setting end of stream. 2012/12/30 17:55:31 [ogg.muxer:4] liqogg: Starting new sequentialized ogg stream. 2012/12/30 17:55:31 [ogg.muxer:4] liqogg: Starting all streams
icy_metadata="false"
output.icecast(%vorbis (channels=2, samplerate=44100, quality=0.4), icy_metadata="false", mount = "liqogg", host = "localhost", port = 8000, password = "hackme", genre = "Rock", description = "Ogg 128kb\s", name = "Ogg 128kb\s", url = "xxx", drop__metadata(url))
#!/usr/bin/liquidsoap # Log dir set("log.file.path","/var/log/liquidsoap/basic.log") set("log.stdout",true) set("log.level",4) # Input HT.TP url=mksafe(input.ht.tp("ht.tp://ua.xxx.net:8000/mp3")) #AAC+ output.icecast(%aacplus(channels=2, samplerate=44100, bitrate=64), mount = "aac", host = "localhost", port = 8000, password = "hackme", genre="Rock", description="xxx", name="xxx", url="ht.tp://xxx.net", url) #OGG output.icecast(%vorbis (channels=2, samplerate=44100, quality=0.4), mount = "ogg", host = "localhost", port = 8000, password = "hackme", genre = "Rock", description = "xxx", name = "xxx", url = "ht.tp://xxx.net", drop_metadata(url))