-
Consider this code:
```
import("stdfaust.lib");
in_c = _;
in_b = _;
in_a = _;
process = +(in_a, in_b), _ : *(in_c);
```
The generated C++ code:
```
virtual void compute (int co…
-
When experimenting with this simple Faust dsp
```faust
import("stdfaust.lib");
gate = 1.0;
freq = 440.0;
process = pm.elecGuitar(
pm.f2l(freq),
hslider("pluck position", 0.9, 0, 1, 0.01…
-
tutti i file devono essere nominati `.dsp` che è l'estensione di faust.
le lebrerie, nel caso ne volessi fare, vanno nominate `.lib`
-
Running this: faust2api -of exfaust15.dsp
returns 'wrong argument' on OS X 10.13.6
It creates an empty 'dsp-faust' folder.
I have confirmed that with the '-ios' argument it generates a zip file…
-
Versions tried: latest macosx binary, master, master-dev
When running the command from the faust juce tutorial `faust2api -juce synth.dsp` I get the following output:
```
Your dsp-faust.zip API…
-
Hi, I thought this is direct fork of Node-Audio but after some digging through I realized it's kinda not? The question is, could I install this on my Ubuntu 18 and try do some music with it? :) Really…
-
When trying to compile the code in the Arduino environment, I get the following message:
> 'UI' has not been declared void buildUserInterface(UI*);
Also it is not clear how to initiate a new ob…
-
Web MIDI is deprecated for insecure origins, please update it
https://www.chromestatus.com/feature/5138066234671104
-
Contrary to this paper http://smc2019.uma.es/articles/S1/S1_03_SMC2019_paper.pdf , i'm not able to compile faust code with the command faust2api -teensy. Only faust2teensy -lib does produce code for t…
-
I'm wondering if Faust in general has "in-place semantics", i.e., whether it is always okay to re-use input buffers as output?
I've only looked at a few examples, but the pattern often is (using th…