<snip> > I'm > wondering whether it will be possible, ( or if > anyone is doing something > similar ) to use Jack to pass control signals > between audio apps. I think it > would be extremely useful to be able to send the > equivalent of PD wires or > Csound krate variables back and forth between > different apps as if the were > Control Voltages, allowing the functionality of > outboard CV modulars with > tools from more than one family. I am also <snip>
in JACK, everything is a float between -1.0 and 1.0. So you can't just have arbitrary datatypes. Here's the way I abstract control voltages with JACK (This is based on the voltage levels I am familiar with in modular synths, a la synthesizers.com): JACK -> AC -1.0 -> -5.0v 0.0 -> 0.0v 1.0 -> 5.0v JACK -> DC -1.0 -> 0.0v 0.0 -> 5.0v 1.0 -> 10v __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree
