faust icon indicating copy to clipboard operation
faust copied to clipboard

Functional programming language for signal processing and sound synthesis

Results 177 faust issues
Sort by recently updated
recently updated
newest added

I recently tried using `@grame/libfaust` version `1.3.1` from npm, but realised that `FaustLibrary.js` doesn't provide an export of the main `Faust` object that it constructs, so it's not possible to...

I've recently tried using `@grame/libfaust` version `1.3.1` - I've found that the examples and also my usages of the code throw the following warning in latest Chrome on MacOS after...

Hi This line seems to cause that the path of the plugin file becomes incorrect on macOS if the path includes a space, which it usually does: https://github.com/grame-cncm/faust/blob/4645a5b42455676a4dcdc71e2508ffe1fd984203/tools/faust2appls/faust2sc.py#L175 on macos...

Because single-sample feedback is so common, Faust often generates a lot of 2-value arrays for feedback handling. This ends up being quite expensive in languages like C# where array access...

Having read the Faust documentation, it is unclear what is the best way to get host tempo (BPM, speed etc) into a plugin DSP. I am referring to DSP code...

``` import("stdfaust.lib"); process = rdtable(1000, os.osc(500), 10); ``` produces incorrect code in all FIR backends. or ``` import("stdfaust.lib"); process = rdtable(1000, rdtable(1000, os.osc(500), 10), 10); ``` produces incorrect code in...

Hello, we are a media art team working with Teensy and various sensors. We have been using custom made headphones on which Teensy MicroMod (and various sensors) is embedded, so...

Hello everyone, I'm building an effects box running Elk OS on a Raspberry Pi 4 using plugins written with Faust. Plugins have to be headless, so the UI should to...

``` import("stdfaust.lib"); process = no.noise; ``` produce an incorrect `[0, inf]` interval. Most probably caused by integer computation producing overflow, which are not properly handled. See: https://gcc.gnu.org/onlinedocs/gcc/Integer-Overflow-Builtins.html

Hello, I am trying to use faust2wasm (processor) to run a faust.dsp on the browser. faust2wasm -worklet works fine on Chrome and Firefox but I also need support for Safari...