Hello List, I’m currently developing a FAUST app that allows me to record parameter value changes over a period of time by writing them to a table. The values are then read back from the table in a loop, effectively automating the parameter. I have developed my own bit of code for this, as the ba.automat function didn’t quite do what I wanted it to do. However, for the purposes of this question, we can assume I’m using FAUST's inbuilt ba.automat function to makes things a little easier. My question is: is it possible to send the values that are read from ba.automat (or any table) out via OSC? If so, how do I go about doing that? The code example below demonstrates the sort of signal flow that I currently have in my code:
theValue = hslider(“TheValue",1,1,22050,1) : ba.automat(120, 16, 1); // Records the UI slider interactions to the automat function process = os.oscsin(theValue); I want to be able to send the values that are read from ba.automat to TouchOSC (or any other OSC interface), so I can receive visual feedback on the automation that has been recorded and is currently playing back. Ultimately, I will potentially be automating many values. I’m currently compiling the code to a jack application and running on MacOS, and I’m able to successfully receive OSC from FAUST when I interact with my app’s GUI (starting the app from the command line with the following options: -desthost 127.0.0.1 -xmit 1). Any help on this would be much appreciated! James ________________________________________________ formuls | audiovisual interaction design | www.formuls.co.uk ________________________________________________
_______________________________________________ Faudiostream-users mailing list Faudiostream-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/faudiostream-users