Re: [Faudiostream-users] Controlers names

2014-12-06 Thread Pierre Lecomte
Working perfectly, Thank you ! Pierre > Hi Pierre, > > You can do it like this: > > slider(i) = hslider("Voice %2j", 0.9, 0, 1, 0.01) with {j=i+1;}; > process = par(i,20,slider(i)); > > Cheers, > Julius > > At 02:39 PM 12/6/2014, Pierre Lecomte wrote: > >Hello, > > > >I would like to generat

[Faudiostream-users] faust2ck problem

2014-12-06 Thread Daniel Chapiro
I ran faust2ck on a Faust model (bowed.dsp), but when I tried to use the resulting bowed.chug, and instantiated it in a ChucK program, although the UGen is visible, only its gate/freq/gain members are visible. All the other members of bowed.dsp are reported by ChucK as "non-existing"… I don't

Re: [Faudiostream-users] Controlers names

2014-12-06 Thread Julius Smith
Hi Pierre, You can do it like this: slider(i) = hslider("Voice %2j", 0.9, 0, 1, 0.01) with {j=i+1;}; process = par(i,20,slider(i)); Cheers, Julius At 02:39 PM 12/6/2014, Pierre Lecomte wrote: Hello, I would like to generate several controllers using the par functions par(i,20,hslider("Voice

Re: [Faudiostream-users] [Faudiostream-devel] New faustvst.cpp architecture

2014-12-06 Thread Julius Smith
Hi Albert, Wow, thanks for bringing VST support up to the level of LV2 support! As always, it was a pleasure to follow your README file and get everything installed. Sorry if this question is "politically incorrect" on this list, but do you or anyone happen to know the easiest way to get VS

[Faudiostream-users] Controlers names

2014-12-06 Thread Pierre Lecomte
Hello, I would like to generate several controllers using the par functions par(i,20,hslider("Voice %2i", 0.9, 0, 1, 0.01)) With this functions I will have 20 sliders with names 0, 1, up to 19 I would like to have the names of theses sliders 1, 2, up to 20 but i'm not sure of the syntax.. %2(

[Faudiostream-users] New faustvst.cpp architecture

2014-12-06 Thread Albert Graef
Hi everybody, as I've been playing around with some commercial DAWs lately, which don't support LV2, I felt the need to have something like faust-lv2 for VST plugins. First I gave Yan Michalevsky's new vst.cpp architecture a try, which he presented at LAC 2014. Yan's architecture has a very cool p