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
Envelopes for use in mono streams
8 posts
• Page 1 of 1
Envelopes for use in mono streams
Im trying to get the stock ADSR module modulating a simple mono stream.
I read up on posts in the SM forums but some of the files have been removed. . .
It seems whenever I connect a stream to the GATE input on the ADSR, it resets the env.
I have tried to use a multiplexer to switch it on/off but to no avail!
Checking the "Gate" tickbox in properties registers the env void. . ?
My premise is to have a user selectable threshold in which the envelope will trigger once input is above.
How can I use the trigger from the thresh to reset the envelope???
Thanks!!
I read up on posts in the SM forums but some of the files have been removed. . .
It seems whenever I connect a stream to the GATE input on the ADSR, it resets the env.
I have tried to use a multiplexer to switch it on/off but to no avail!
Checking the "Gate" tickbox in properties registers the env void. . ?
My premise is to have a user selectable threshold in which the envelope will trigger once input is above.
How can I use the trigger from the thresh to reset the envelope???
Thanks!!
- Drnkhobo
- Posts: 312
- Joined: Sun Aug 19, 2012 7:13 pm
- Location: ZA
Re: Envelopes for use in mono streams
Hi There,
This is something that has caught out many people in the past - me included!
Ticking the 'gate' prpperty - yes, that is right - mono streams never have the 'auto-gate' thing that you can have with poly streams.
The tricky bit is that the gate input uses a 'Stream Bool' input - and booleans in streams are a bit wierd!...
In green it's easy: False = 0 and True = 1 - well, in fact, if you try putting a float value in, you'll find that any value other than zero is true in green.
For a stream bool, false is also zero, but true is represented by a load of binary bits that don't even make a real number - it's a special value all to itself that only a true stream bool output is able to provide.
To demonstrate, here's a quick schematic that uses the genuine stream boolean from a stream compare....
When you send any other value than zero or the "special true value", what you get is very unpredictable.
If you have ever used the DSP code box, you might actually have seen this before without realising it. e.g.
The (y > 0) comparison here also produces the same zero/"special true" values - and it is a bitmask where every bit in the value is off, or every bit is on (true) - the '&' then uses this to either let the value of x pass through, or 'mask it out' to zero.
And you can access these tru/false values directly from a code box too - here's the same 'greater than' from the example, but written as DSP code...
There's also a 'streamboolin' in code, so you can pass booleans around between code blocks, envelopes etc. just like regular streams - you just can't 'mix and match' with normal values like you can in 'green'.
One very useful little code is this little one...
This takes any old number as an input, and output false if it is zero, true for any other value - so it makes a 'green bool' to 'stream bool' convertor. Useful for gating the ADSR from a regular green on/off signal.
ARRGH EDIT EDIT EDIT - too much Ruby,, you wouldn't believe how many times I just had to edit those code examples before I got them right - I've nearly forgotten DSP code!!
This is something that has caught out many people in the past - me included!
Ticking the 'gate' prpperty - yes, that is right - mono streams never have the 'auto-gate' thing that you can have with poly streams.
The tricky bit is that the gate input uses a 'Stream Bool' input - and booleans in streams are a bit wierd!...
In green it's easy: False = 0 and True = 1 - well, in fact, if you try putting a float value in, you'll find that any value other than zero is true in green.
For a stream bool, false is also zero, but true is represented by a load of binary bits that don't even make a real number - it's a special value all to itself that only a true stream bool output is able to provide.
To demonstrate, here's a quick schematic that uses the genuine stream boolean from a stream compare....
When you send any other value than zero or the "special true value", what you get is very unpredictable.
If you have ever used the DSP code box, you might actually have seen this before without realising it. e.g.
- Code: Select all
x = x & (y > 0)
The (y > 0) comparison here also produces the same zero/"special true" values - and it is a bitmask where every bit in the value is off, or every bit is on (true) - the '&' then uses this to either let the value of x pass through, or 'mask it out' to zero.
And you can access these tru/false values directly from a code box too - here's the same 'greater than' from the example, but written as DSP code...
- Code: Select all
streamin x;
streamin y;
streamboolout out; //true/false boolean output
out = (x > y);
There's also a 'streamboolin' in code, so you can pass booleans around between code blocks, envelopes etc. just like regular streams - you just can't 'mix and match' with normal values like you can in 'green'.
One very useful little code is this little one...
- Code: Select all
streamin in;
streamboolout out;
out = (in != 0);
This takes any old number as an input, and output false if it is zero, true for any other value - so it makes a 'green bool' to 'stream bool' convertor. Useful for gating the ADSR from a regular green on/off signal.
ARRGH EDIT EDIT EDIT - too much Ruby,, you wouldn't believe how many times I just had to edit those code examples before I got them right - I've nearly forgotten DSP code!!
All schematics/modules I post are free for all to use - but a credit is always polite!
Don't stagnate, mutate to create!
Don't stagnate, mutate to create!
-
trogluddite - Posts: 1730
- Joined: Fri Oct 22, 2010 12:46 am
- Location: Yorkshire, UK
Re: Envelopes for use in mono streams
Nice one Trog!
You really know your stuff! You were right, its the "stream bool" I have never used before!
Thanks a million for your help!
You seem quite involved with Ruby, maybe you two need a break???
You really know your stuff! You were right, its the "stream bool" I have never used before!
Thanks a million for your help!
You seem quite involved with Ruby, maybe you two need a break???
- Drnkhobo
- Posts: 312
- Joined: Sun Aug 19, 2012 7:13 pm
- Location: ZA
Re: Envelopes for use in mono streams
You're welcome.
Maybe DSPr should set up an addicts helpline!
Maybe DSPr should set up an addicts helpline!
All schematics/modules I post are free for all to use - but a credit is always polite!
Don't stagnate, mutate to create!
Don't stagnate, mutate to create!
-
trogluddite - Posts: 1730
- Joined: Fri Oct 22, 2010 12:46 am
- Location: Yorkshire, UK
Re: Envelopes for use in mono streams
So thanks to Trog, the triggering of envelopes are easy!
Now the next part is some better stock ENV modules. . . .
Dont get me wrong the FS ones are ok but I noticed that attack times of 1-10ms are VERY buggy!
(As well as other "short" times/settings)
I tried the Multi-stage ENV which works GREAT but I want ADSR "knobs" instead of a graph GUI. . .
Looked inside & have NO IDEA on how to control the MS ENV via knobs. This calls for a super advanced FS user . .
not slipping any names here Trog
LOL
Now the next part is some better stock ENV modules. . . .
Dont get me wrong the FS ones are ok but I noticed that attack times of 1-10ms are VERY buggy!
(As well as other "short" times/settings)
I tried the Multi-stage ENV which works GREAT but I want ADSR "knobs" instead of a graph GUI. . .
Looked inside & have NO IDEA on how to control the MS ENV via knobs. This calls for a super advanced FS user . .
not slipping any names here Trog
LOL
- Drnkhobo
- Posts: 312
- Joined: Sun Aug 19, 2012 7:13 pm
- Location: ZA
Re: Envelopes for use in mono streams
Anyone have any stock envelope modules that sound ok?
I have tried some & the standard ones don't sound good at all!
The best ones i have heard are the multi stages FS ones but I dont want a draw-able env. Just good ol regular knobs
I have tried some & the standard ones don't sound good at all!
The best ones i have heard are the multi stages FS ones but I dont want a draw-able env. Just good ol regular knobs
- Drnkhobo
- Posts: 312
- Joined: Sun Aug 19, 2012 7:13 pm
- Location: ZA
Re: Envelopes for use in mono streams
You could ask infuzion if u can license his ASM one?
He built it for me years ago as paid work.
He built it for me years ago as paid work.
-
nix - Posts: 817
- Joined: Tue Jul 13, 2010 10:51 am
Re: Envelopes for use in mono streams
Thanks Nix, will ask him
- Drnkhobo
- Posts: 312
- Joined: Sun Aug 19, 2012 7:13 pm
- Location: ZA
8 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 34 guests