Search found 55 matches

by ChrisHooker
Tue Oct 18, 2022 1:45 am
Forum: General
Topic: Crazy Ideas
Replies: 13
Views: 45151

Re: Crazy Ideas

tester wrote:As for this format filter....

What about the "L" sound?


Try using an "Eh" followed by an "Oh", and roll off the highs & mids on the "Oh".
by ChrisHooker
Thu Nov 05, 2020 4:22 am
Forum: DSP
Topic: EQ Based on multiple IRs
Replies: 3
Views: 18963

Re: EQ Based on multiple IRs

Hi StereoSpace,
This idea could lead to a very CPU intensive plug-in, but that aside, it can be done.
Attached is an example of using 1 knob to control the EQ "Gain"... or more accurately: a balance between the dry signal, a "fully boosted filter" IR, and a "fully cut filter" IR.

This schematic is ...
by ChrisHooker
Sat Jun 27, 2020 1:17 pm
Forum: General
Topic: Win10 / toolbox
Replies: 3
Views: 12016

Re: Win10 / toolbox

Windows 10 does have the folder (C:\Users\[YourName]\AppData\Roaming\FlowStone\Modules\User), it is just set as hidden by default. To see it, you need to set Windows Explorer to show hidden items. A checkbox for this is found under the View pull-down menu.
by ChrisHooker
Tue Jun 23, 2020 6:12 am
Forum: DSP
Topic: mul vs div
Replies: 23
Views: 69739

Re: mul vs div

Keep it simple, no neeed for programming some complicated automated test.
mul_vs_div (2).osm

Rounding errors are virtually nullified at a factor of 1,2,4,8,16,32,64...
(And the same applies to the reverse below 1: 0.5,0.25,0.125...)


I really want to make sure that people just getting into this ...
by ChrisHooker
Sun Jun 21, 2020 8:11 pm
Forum: General
Topic: Pack your de-zippers for co-efficients with stereo pack
Replies: 13
Views: 32087

Re: Pack your de-zippers for co-efficients with stereo pack

No probs for me, but there's not much going on in this schematic. Maybe the cause of the crashing you're getting is actually something else you have happening in whatever schematic you've been trying it in.
by ChrisHooker
Sun Jun 21, 2020 7:57 pm
Forum: General
Topic: Pack your de-zippers for co-efficients with stereo pack
Replies: 13
Views: 32087

Re: Pack your de-zippers for co-efficients with stereo pack

SSE allows 4 channels to be processed together at the same CPU toll (hence the 4-dot symbol and naming of the "Mono4" connections), so even better than your stereo (2-channel) pack would be to use the stock Pack and Unpack primitives, supporting 4 channels.
That will take the CPU down to 1/4 of the ...
by ChrisHooker
Thu Jun 18, 2020 2:42 am
Forum: DSP
Topic: GUI fade In?
Replies: 2
Views: 15895

Re: GUI fade In?

Attached are a few example in one schematic.
This is all in green. You can use a Slide primitive, or get a little more complex with a timer.
I'm sure someone else can provide a ruby example, but it's beyond me.
by ChrisHooker
Sun Jun 14, 2020 5:19 pm
Forum: DSP
Topic: DSP: possible to split audio to 2 volume levels? peaks and..
Replies: 18
Views: 56122

Re: DSP: possible to split audio to 2 volume levels? peaks a

Perhaps the best approach would be to use the split signals as a side-chain, and process the main signal in two ways (run the processes in series of each other). When the lower signal is present (or just any signal at all, before the split) you have your 1st effect on the main signal. When the upper ...
by ChrisHooker
Sun Jun 14, 2020 4:25 pm
Forum: DSP
Topic: DSP: possible to split audio to 2 volume levels? peaks and..
Replies: 18
Views: 56122

Re: DSP: possible to split audio to 2 volume levels? peaks a

Not stupid at all!
Attached is an example through code.

The trouble comes in processing the two signals after this split. If their levels change at the threshold crossover point set in this first step, then recombining them will result in clicks where the level jumps between the two. Therefore, I'm ...
by ChrisHooker
Tue Jun 09, 2020 3:33 am
Forum: User Examples
Topic: DSPplug tick100
Replies: 75
Views: 178094

Re: DSPplug tick100

To further Trog's example: The proof is easy enough - just stick a trigger blocker primitive between the trigger combiner and the sample-and-hold.

...You can in fact remove the connection altogether. The only thing running the counter is the ruby ticker. In effect, there is no additional ...