If you have a problem or need to report a bug please email : support@dsprobotics.com
There are 3 sections to this support area:
DOWNLOADS: access to product manuals, support files and drivers
HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects
USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here
NEW REGISTRATIONS - please contact us if you wish to register on the forum
Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright
Search found 55 matches
- Tue Oct 18, 2022 1:45 am
- Forum: General
- Topic: Crazy Ideas
- Replies: 13
- Views: 45142
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".
- Thu Nov 05, 2020 4:22 am
- Forum: DSP
- Topic: EQ Based on multiple IRs
- Replies: 3
- Views: 18960
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 ...
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 ...
- Sat Jun 27, 2020 1:17 pm
- Forum: General
- Topic: Win10 / toolbox
- Replies: 3
- Views: 12004
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.
- Tue Jun 23, 2020 6:12 am
- Forum: DSP
- Topic: mul vs div
- Replies: 23
- Views: 69726
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 ...
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 ...
- Sun Jun 21, 2020 8:11 pm
- Forum: General
- Topic: Pack your de-zippers for co-efficients with stereo pack
- Replies: 13
- Views: 32058
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.
- Sun Jun 21, 2020 7:57 pm
- Forum: General
- Topic: Pack your de-zippers for co-efficients with stereo pack
- Replies: 13
- Views: 32058
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 ...
That will take the CPU down to 1/4 of the ...
- Thu Jun 18, 2020 2:42 am
- Forum: DSP
- Topic: GUI fade In?
- Replies: 2
- Views: 15888
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.
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.
- Sun Jun 14, 2020 5:19 pm
- Forum: DSP
- Topic: DSP: possible to split audio to 2 volume levels? peaks and..
- Replies: 18
- Views: 56096
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 ...
- Sun Jun 14, 2020 4:25 pm
- Forum: DSP
- Topic: DSP: possible to split audio to 2 volume levels? peaks and..
- Replies: 18
- Views: 56096
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 ...
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 ...
- Tue Jun 09, 2020 3:33 am
- Forum: User Examples
- Topic: DSPplug tick100
- Replies: 75
- Views: 177984
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 ...
...You can in fact remove the connection altogether. The only thing running the counter is the ruby ticker. In effect, there is no additional ...