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 667 matches
- Sun Oct 20, 2024 7:21 pm
- Forum: General
- Topic: Vst Preset Parameter ID ?
- Replies: 6
- Views: 147862
Re: Vst Preset Parameter ID ?
The preset order works fine over here. You have to use numbers 0, 1, 2, etc. To check your preset order add the "preset show order" module to check which order your presets will appear to the daw
- Sun Oct 20, 2024 9:34 am
- Forum: General
- Topic: Vst Preset Parameter ID ?
- Replies: 6
- Views: 147862
Re: Vst Preset Parameter ID ?
Preset parameters have a input called "order", that sets the preset order sequence. This might only be available in the alpha versions though, i cannot remember.
- Wed Oct 16, 2024 7:14 pm
- Forum: DSP
- Topic: Alias Suppressed Wave Shaping
- Replies: 6
- Views: 536549
Re: Alias Suppressed Wave Shaping
Thanks again, Adam. Indeed, rcpps and the additional multipy are cheaper than divps, but you are aware that it comes at the cost of precision loss. rcpps has a relative error of up to 1.5*2^-12, which means you have a bit more than 3 significant digits (out of nearly 7 in single precision). In ...
- Wed Oct 16, 2024 11:33 am
- Forum: DSP
- Topic: Alias Suppressed Wave Shaping
- Replies: 6
- Views: 536549
Re: Alias Suppressed Wave Shaping
An optimization one can do is to use reciprocals instead of the division at the end of the code like so:
addps xmm0,xmm1; // w1 + w
addps xmm1,xmm4; // w1 + w2
rcpps xmm0,xmm0; // 1/(w1 + w)
rcpps xmm1,xmm1; // 1/(w1 + w2)
mulps xmm3,xmm0; // (3*x1 + x) * (1/(w1 + w))
mulps xmm2,xmm1; // (3*x1 ...
addps xmm0,xmm1; // w1 + w
addps xmm1,xmm4; // w1 + w2
rcpps xmm0,xmm0; // 1/(w1 + w)
rcpps xmm1,xmm1; // 1/(w1 + w2)
mulps xmm3,xmm0; // (3*x1 + x) * (1/(w1 + w))
mulps xmm2,xmm1; // (3*x1 ...
- Tue Oct 15, 2024 8:28 am
- Forum: DSP
- Topic: Alias Suppressed Wave Shaping
- Replies: 6
- Views: 536549
Re: Alias Suppressed Wave Shaping
Nice stuff, thanks! Just an observation, in the "AA Sigmoid" module the "w" constant is not declared in:
movaps xmm4,w; // w2
movaps w,xmm0;
But it should work just fine without it!
movaps xmm4,w; // w2
movaps w,xmm0;
But it should work just fine without it!
- Sat Oct 12, 2024 7:17 pm
- Forum: General
- Topic: Trigger A Wave File
- Replies: 5
- Views: 128994
Re: Trigger A Wave File
There is already the "Wave Player" module, which does exactly that
Re: Switches
I havent tried it yet, but in theory it should, as it doesnt say its vst3 exclusiveSpogg wrote: I can’t find in 3.06 so I guess it’s an alpha feature. Also, do you know if it complies with VST2?
Re: Switches
There is a preset parameter called "Preset Bool" (not sure when that was added), and that will probably show up as a switch in some DAWs
- Fri May 17, 2024 1:13 am
- Forum: General
- Topic: Flowstone 4 alpha (FS4)
- Replies: 110
- Views: 3128250
Re: Flowstone 4 alpha (FS4)
If a person did not purchase FlowStone, why should he get access to the alpha?User108 wrote:Sorry? Could you elaborate? As I do not see any answer to my question regarding license.tulamide wrote:And there you have your answer.
- Thu May 09, 2024 2:18 pm
- Forum: General
- Topic: lfo always retriggers on note on
- Replies: 2
- Views: 29684
Re: lfo always retriggers on note on
You need to convert it to blue (mono) stream, so its always active. Read the Flowstone user manual to learn the difference between poly and mono signals 