[CM] apply audio effects on processes

taube@uiuc.edu taube@uiuc.edu
Thu, 6 May 2004 16:35:56 -0500


>1) Is it possible to send the result of the event function in
output stream instead of file?
>

i dont know what this means. You can make an event stream that
writes to standard output, if that is what you want:

(setf s (new event-stream :stream *standard-output*))
(events (whatever) s)

If you are in clisp on unix then you can the value of :stream
to a clisp "pipe stream" that connects to some application.
see the clisp manual about that.

>2) Is it possible to use LADSPA plungins as Lisp function
which takes the input stream and give the output treated
>by the plugin?
>

sorry, i dont understand this. maybe you want a clisp pipe
stream as in my first answer?