2011/1/5 Vincent Cassé <[email protected]>: > I have tested : > file = output.file(%vorbis,"test.ogg",live) > ignore(server.execute("#{source.id(file)}.stop"))
That's because your command is executed before that the source is created. If the output wasn't ignored, it would show an error. The solution is to use a timeout to schedule the command after a few seconds. The reason is often forgotten (we've seen it lately with the static random interval): when you execute a script, it creates sources, but the streaming only starts after that the script is finished. In other words the execution of the script and of the streaming are completely orthogonal. Cheers, -- David ------------------------------------------------------------------------------ Gaining the trust of online customers is vital for the success of any company that requires sensitive data to be transmitted over the Web. Learn how to best implement a security strategy that keeps consumers' information secure and instills the confidence they need to proceed with transactions. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
