Stéphane Letz

Results 436 comments of Stéphane Letz

Please suggest something ((-; What kind of string JACK meta-data system would be interested to get?

So in the Faust DSP code: declare ?? declare ?? declare ??

Yes, this discussion about associating proper "semantic" to audio ins/outs is also quite important in the context of VCV Rack. We are indeed working on that, see: https://github.com/grame-cncm/faust/tree/vcvrack/architecture/vcvrack. And we'll...

OK: ``` import("stdfaust.lib"); vu_meter(in) = in _; process = vu_meter; ```

Some environments can do that either by using the [libfaust + LLVM JIT way](https://faustdoc.grame.fr/manual/embedding/) of the [libfaust + WebAssembly way](https://faustdoc.grame.fr/manual/deploying/): - https://faust.grame.fr/community/made-with-faust/#jspatcher - https://faust.grame.fr/community/made-with-faust/#gwion - https://faust.grame.fr/community/made-with-faust/#fragment-audio-server-and-fragment - https://faust.grame.fr/community/made-with-faust/#web-synth - https://faust.grame.fr/community/made-with-faust/#dawdreamer...

Faust has a [Rust backend](https://github.com/grame-cncm/faust/tree/master-dev/compiler/generator/rust). Would it makes sense and technically possible to add Faust support directly in Glicol?

A SOUL patch basically contains a SOUL graph composed of one or several connected SOUL processors, with a LLVM JIT machinery to do dynamic compilation. This is something you can...

The SOUL project is currently in sleep mode after ROLI bankruptcy. It may resurrect but nothing has been announced yet.

Note that part of the Faust compiler machinery can be used even if you decide not to use the Faust programming language itself. See https://faustdoc.grame.fr/tutorials/signal-api/.