On 11/21/20, Boenn, Georg <georg.bo...@uleth.ca> wrote:
> Hi James,
>
> Thanks for getting back.
> I have used the online IDE: https://faustide.grame.fr/

I haven't used the IDE so can't really comment on that. I'm not sure
which architecture it uses behind the scenes - the same as faust2vst,
faust2faustvst, or some completely other one.

> Vst effects work great, It is the midi-fied vsti target that i have problems
> with.

I seem to recall that with the command-line tools, you need to pass a
flag to enable midi, which presumably gets passed on to the
architecture. Perhaps the IDE isn't passing this flag properly? No
idea, just a guess.

> Is it possible to see the intermediate c++ code that faust generates for
> vsti compilation if you use the command-line tools?

It is possible - I've done it - but I don't think the tools have
anything special to make it easy. The executables are mostly just bash
scripts - how's your bash? If you're up to it, you can take a look at
them to find out what they're doing and/or tweak them. They mostly
just write intermediate code to a file in a temporary directory -
faust2faustvst seems to write to /tmp/faust2faustvst.XXXXXX, where the
XXXXXX are random chars. I think it deletes that directory when it's
done, so if you want to you could either remove the line from the
script which does that (rm -rf $tmpdir, near the end), or just try to
be quick and grab the file before it deletes it.

Hope that helps.

Cheers,
James


_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users

Reply via email to