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 1196 matches
- Sun Mar 10, 2019 12:39 am
- Forum: General
- Topic: trigger from stream
- Replies: 14
- Views: 25367
Re: trigger from stream
are you looking for something like this?
Oh my God! Yeah!!!
OK, there are few warnings I must pose.
First, the schematic outputs triggers that are delayed by exactly 1 buffer size (or more accurately a frame). The timing is correct relative to each other, but you will get different overall lag ...
Oh my God! Yeah!!!
OK, there are few warnings I must pose.
First, the schematic outputs triggers that are delayed by exactly 1 buffer size (or more accurately a frame). The timing is correct relative to each other, but you will get different overall lag ...
- Sun Mar 10, 2019 12:07 am
- Forum: General
- Topic: trigger from stream
- Replies: 14
- Views: 25367
Re: trigger from stream
are you looking for something like this?
- Sat Nov 10, 2018 11:17 pm
- Forum: User Examples
- Topic: Stock EQ V2
- Replies: 41
- Views: 102409
Re: Stock EQ V2
Hmm... IMO, what I suggested should work with any type of multithreading system ... it's the mechanism that matters here.
Without some "gating" system you try to draw all those triggered frames (could be 1000's / second ... depends on implementation ofcourse) which usually leads to visible ...
- Sat Nov 10, 2018 3:07 am
- Forum: User Examples
- Topic: Stock EQ V2
- Replies: 41
- Views: 102409
Re: Stock EQ V2
Ruby seem to support multithreading so, is it possible to use this feature in drawing routine ... i.e. bypass incoming triggers until current frame is fully drawn ?
Ruby "seem" to support multithreading. Th threads in ruby are "fake" threads. As far as system is concerned, there is actually only 1 ...
Ruby "seem" to support multithreading. Th threads in ruby are "fake" threads. As far as system is concerned, there is actually only 1 ...
- Fri Nov 09, 2018 2:49 pm
- Forum: User Examples
- Topic: Stock EQ V2
- Replies: 41
- Views: 102409
Re: Stock EQ V2
I have done some tests and I wasn't able to get any noticeable improvement in performance. The main cost in performance seems to be drawing the display in the first place. The old version already needs to draw buffersize/2 number of gradients and draws each pixel exactly once, so it's optimal in ...
- Thu Nov 08, 2018 6:03 pm
- Forum: User Examples
- Topic: Stock EQ V2
- Replies: 41
- Views: 102409
Re: Stock EQ V2
Hello guys,
The FFT analyser is from my early years in ruby. I can make it a bit more robust, and perhaps less CPU intensive if you're interested.
The FFT analyser is from my early years in ruby. I can make it a bit more robust, and perhaps less CPU intensive if you're interested.
- Mon Sep 24, 2018 8:55 pm
- Forum: General
- Topic: Export full Top View Module as VST
- Replies: 3
- Views: 9581
Re: Export full Top View Module as VST
Hi,
I recently download Flowstone and I've been messing around trying to make my own vst however when I go to try to export the vst to test it, it only gives me the option to export vst for individual audio schematics. How can I export my whole top view module as a vst so every schematic exports ...
I recently download Flowstone and I've been messing around trying to make my own vst however when I go to try to export the vst to test it, it only gives me the option to export vst for individual audio schematics. How can I export my whole top view module as a vst so every schematic exports ...
- Mon Sep 03, 2018 10:24 pm
- Forum: DSP
- Topic: Freely Configurable Filter
- Replies: 21
- Views: 89299
Re: Freely Configurable Filter
Julius O. Smith is a good source:
m ... esign.html
OMFG! It has never occurred to me that ln(frequency domain)=ln(magnitude)+i*phase
Cepstrum always seemed like just an "engineering" solution to pitch detection. It has never occurred to me that it could actually be a "mathematical" solution to ...
m ... esign.html
OMFG! It has never occurred to me that ln(frequency domain)=ln(magnitude)+i*phase
Cepstrum always seemed like just an "engineering" solution to pitch detection. It has never occurred to me that it could actually be a "mathematical" solution to ...
- Mon Sep 03, 2018 12:53 pm
- Forum: DSP
- Topic: Freely Configurable Filter
- Replies: 21
- Views: 89299
Re: Freely Configurable Filter
I'm especially fascinated by the minimum phase response mode. I always knew that it should be possible to calculate minimum phase response for given magnitude curve and I've been hunting for such algorithm for years now... Do you by any chance have some references to what you've done there? I can ...
- Mon Aug 06, 2018 12:39 am
- Forum: General
- Topic: C/C++ programmers, please confirm
- Replies: 5
- Views: 12492
Re: C/C++ programmers, please confirm
1) enum is a list of specific integer values that are accessed by their name
Well, kind of but not really. Enum is only required to have implicit conversion to char and signed/unsigned integers. The actual specific underlying type is implementation specific (though all compilers happen to default ...
Well, kind of but not really. Enum is only required to have implicit conversion to char and signed/unsigned integers. The actual specific underlying type is implementation specific (though all compilers happen to default ...