Sorry, it works just fine. My bad...

Dnia 9 lipca 2012 11:11 azerty88 <[email protected]> napisał(a):

> Hi,
> 
> Thanks for your quick reply. Probably I am doing something wrong because it 
> didn't help me. Here is my code I used to test.
> 
> 
> Main script:
> #!/usr/local/bin/liquidsoap
> 
> set("log.file.path", "/tmp/radio.log")
> set("log.stdout", true)
> 
> music = playlist.safe("/mnt/music")
> live = fade.out(merge_tracks(input.http("http://localhost:8000/live";)))
> 
> radio = smooth_add(p=0.,special=live,normal=music)
> 
> output.icecast(%mp3, host="localhost", port=8000, password="hackme", 
> mount="radio", radio)
> 
> Live mock:
> #!/usr/local/bin/liquidsoap
> 
> set("log.file.path", "/tmp/live.log")
> set("log.stdout", true)
> 
> music = audio_to_stereo(merge_tracks(playlist.safe(mode="random", 
> "/mnt/jingles")))
> 
> output.icecast(%vorbis, host="localhost", port=8000, password="hackme", 
> mount="live", music)
> 
> 
> Dnia 9 lipca 2012 10:45 David Baelde <[email protected]> napisał(a):
> 
> > Hi,
> > 
> > This is because vorbis streams have track information, which we
> > reflect in the liquidsoap stream. There is an easy solution to get
> > back to the same situation as with MP3: insert a merge_tracks()
> > operator just after your live input.
> > 
> > HTH
> > 
> 

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to