-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to route proxies to each other? #143
Comments
With standard cl-collider and cl-patterns, I would do that like this: (defvar *bus* (bus-audio :chanls 2))
(pb :test
;; your pattern code here
:out *bus*)
(proxy :process
(let* ((sig (in.ar *bus* 2))
(sig (tanh (* 30 sig))))
sig))
:pos :head) (Note that the synthdef you use in
I wrote a macro that wraps (pb :test
;; your pattern code here
:out (dn :process))
(dn :process (:fx)
:sig (tanh (* 30 sig))
:out (b2 sig)) |
Good to know :-) So for now I'll go for the old-school way of doing things, and wait with excitement for your dn macro! |
Did some work on this #154... @defaultxr how close is this to what you've been working on? |
Hi,
My (currently) favorite way of creating an effect chain in sclang goes a bit like this:
... where Pdef(\test) is some pattern generating sound.
Is this possible to replicate in cl-collider?
The text was updated successfully, but these errors were encountered: