grame-cncm / faust

Functional programming language for signal processing and sound synthesis
http://faust.grame.fr
Other
2.53k stars 319 forks source link

faust2jackconsole : "unrecognized option --group" #262

Closed mephistopheles-8 closed 5 years ago

mephistopheles-8 commented 5 years ago

It seems that the option --group 0 results in an error message, "unrecognized option --group" for applications built with faust2jackconsole. I think this is an issue in gui/console.h.

sletz commented 5 years ago

This should be fixed in https://github.com/grame-cncm/faust/commit/063efdbb0401cd248b3c174cdf4cfb19465a9c6f

A new --controlparameter is now available in some of faust2xx scripts. So you'll have to do something like:

faust2jaqt -midi -nvoices 8 -osc clarinetMIDI.dsp

then ./clarinetMIDI --group 0 --control 0

All polyphonic voices are always "on" and can be individually controlled with OSC messages.

mephistopheles-8 commented 5 years ago

That seems to have fixed the issue -- thanks!