Hi and thanks for the feedback! 2011/6/15 Martin Konečný <[email protected]>: > Hi Romain, > Im playing with this now. I have the following script: > >> set("server.telnet", true) >> set("server.telnet.port", 1234) >> set("log.file.path", "/home/martin/liquidsoap/ls.log") >> set("log.stdout", true) >> %include "library/pervasives.liq" >> s = request.queue(id="queue", conservative=true) >> s = cue_cut(s) >> s = mksafe(s) >> out(s) > > and I connect through telnet and issue the following command: >>> >>> queue.push >>> annotate:liq_cue_in="5.0",liq_cue_out="0.0":/home/martin/test.mp3 >>> >>> 0 >>> >>> END >>> >>> Connection closed by foreign host. > > This causes the telnet client to be disconnected immediately, and no sound > is issued.
So, the problem was that cue_out <= cue_in, which trigered an assert false in a situation we did not expect when placing that assertion.. I have removed the assert as I think we should allow cue_out <= cue_in even if this is kinda weird to do... As for the real problem, if you do not want to cue_out, you should not pass any cue_out or, if this is not possible, pass a very large value.. Romain ------------------------------------------------------------------------------ EditLive Enterprise is the world's most technically advanced content authoring tool. Experience the power of Track Changes, Inline Image Editing and ensure content is compliant with Accessibility Checking. http://p.sf.net/sfu/ephox-dev2dev _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
