[Faudiostream-users] Separate dry / wet params for stereo FX

2024-08-09 Thread Christopher Arndt
Hi all, I have a stereo signal, to which I want to apply a stereo in/stereo out effect. I want separate controls for the dry and the signal, not a combined dry/wet knob. At first I had trouble wrapping my head around how to set up the routing in faust, but this is what I came up with, which

Re: [Faudiostream-users] [OT] Discord blues

2023-03-15 Thread Christopher Arndt
Am 15.03.23 um 18:05 schrieb Marc Lavallée via Faudiostream-users: Hoping I could still join he party, I sent a message to Discord, asking how I could get in. I came to the conclusion that it won't happen, and it's for the best. I'm not asking the Faust community to choose some other messaging

Re: [Faudiostream-users] Triangle LFO with controllable phase?

2023-02-27 Thread Christopher Arndt
Am 27.02.23 um 05:38 schrieb Hermann Meyer: Here is a example for smooth true bypass and multi select in C++ Thanks for the tip. I already suspected that I would have to take a similar approach. Chris ___ Faudiostream-users mailing list Faudiostr

Re: [Faudiostream-users] Triangle LFO with controllable phase?

2023-02-26 Thread Christopher Arndt
Am 27.02.23 um 00:07 schrieb Julius Smith: I think writing the triangle-wave from scratch as Dario did is the best way to go when possible. I used Dario's code for the LFO in this chorus effect I created: https://gist.github.com/SpotlightKid/9fe3b2638b8a1fa8b1a1d007716a45cb I wanted a chorus

Re: [Faudiostream-users] Triangle LFO with controllable phase?

2023-02-26 Thread Christopher Arndt
On Sat, Feb 25, 2023 at 4:05 PM Dario Sanfilippo mailto:sanfilippo.da...@gmail.com>> wrote: Here is a non-delay-based alternative (tested very briefly, but it seems to work): On Sun, 26 Feb 2023 at 00:28, Julius Smith mailto:julius.sm...@gmail.com>> wrote: Here is my updated

Re: [Faudiostream-users] Triangle LFO with controllable phase?

2023-02-25 Thread Christopher Arndt
Am 24.02.23 um 21:50 schrieb Julius Smith: Hmmm, it looks to me like it should be working. I adapted your test program for use with faust2plot, and it's working for me: Yes, it works, if the phase is set initially. But what I want is to change the phase of one LFO at run-time with a parameter

[Faudiostream-users] Triangle LFO with controllable phase?

2023-02-24 Thread Christopher Arndt
Hi all, I want to modulate two delays with two LFOs, which have a phase offset. Using os.oscp works, but the library does not contain a triangle osc with phase control. So tried to make one by copy-pasting from the oscillator.lib: import("stdfaust.lib"); saw1_phase(freq, phase) = 2.0 * os.l

Re: [Faudiostream-users] DISTRHO plugins using Faust

2021-03-22 Thread Christopher Arndt
Am 22.03.21 um 14:01 schrieb Stéphane Letz: > A cookiecutter project template for DISTRHO Plugin Framework (DPF) audio > effect plugins using FAUST for the implementation of the DSP pipeline: > https://github.com/SpotlightKid/cookiecutter-dpf-faust Thanks for highlighting this project. Here are

[Faudiostream-users] Name / annotate inputs and outputs?

2020-08-15 Thread Christopher Arndt
Hi all, is it possible to name or annotate the inputs and outputs of the final processing chain? I suppose I could stick the information in the meta data with declare, e.g.: declare inputs__0__name "Audio In L"; declare inputs__0__symbol "in_l"; declare inputs__1__name "Audio In R"; declare inpu

Re: [Faudiostream-users] View Code Underlying Faust Demo's

2020-08-15 Thread Christopher Arndt
Am 15.08.20 um 13:00 schrieb Alex Lucas: > Presumably, these demo's are written in Faust. If so, is there a way to > view the underlying Faust code? On Linux they are installed under /usr/lib/faust. ma = library("maths.lib"); ba = library("basics.lib"); de = library("delays.lib"); si = library("s