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 47 matches
- Fri Aug 14, 2015 5:17 pm
- Forum: General
- Topic: Real-time pitch
- Replies: 2
- Views: 9790
Real-time pitch
Hello, where can I find example real-time pitch shift? Pitch shift always base to FFT?
- Sun Aug 02, 2015 2:20 pm
- Forum: General
- Topic: Dynamic freq to lfo.
- Replies: 4
- Views: 10706
Re: Dynamic freq to lfo.
i try use sin( pi*2 / ( 44100.0 / control) * count) control = pseudo lfo2
If i change in real-time parametr contol, sound comes from clicks. Hmm...
If i change in real-time parametr contol, sound comes from clicks. Hmm...
- Sat Aug 01, 2015 8:11 am
- Forum: General
- Topic: Dynamic freq to lfo.
- Replies: 4
- Views: 10706
Re: Dynamic freq to lfo.
This is the only way?
- Fri Jul 31, 2015 1:34 pm
- Forum: General
- Topic: Dynamic freq to lfo.
- Replies: 4
- Views: 10706
Dynamic freq to lfo.
Hello, i have a theoretical question. How to create a dynamic change of frequency lfo, using lfo2.
http://rghost.ru/7PrFXKCgR/image.png
http://rghost.ru/7PrFXKCgR/image.png
- Sat Jul 18, 2015 9:02 am
- Forum: General
- Topic: 1 pole lowpass filter
- Replies: 3
- Views: 8868
Re: 1 pole lowpass filter
In 1 pole LP filter.
which means this line ?
and this
1e-11 ?
Code: Select all
stage(0)
{
abs = 3.4e38|0.999999|0.1;
}
which means this line ?
Code: Select all
out = ((out&abs) > 1e-11)&out;
and this
1e-11 ?
- Fri Jul 17, 2015 12:21 pm
- Forum: General
- Topic: 1 pole lowpass filter
- Replies: 3
- Views: 8868
1 pole lowpass filter
Hello guys, i want create simple filter use site http://www.micromodeler.com/dsp/, but i dont understand how work parametr start freq 0 - 0.5
http://rghost.ru/7zqvqbL2L/image.png
http://rghost.ru/7zqvqbL2L/image.png
- Tue Jul 14, 2015 8:12 am
- Forum: User Examples
- Topic: Hilbert Shifter
- Replies: 35
- Views: 141356
Re: Hilbert Shifter
Thanks, code work. For the coefficients of Hilbert , which need some special settings? I try
@order = 8; @transition = 0.1
coeff = polyphase_IRR_coeff.compute_coefs_spec_order_tbw(@order,@transition)
coefs = coeff
coefs_even = coefs.values_at(* coefs.each_index.select {|i| i.even?})
coefs_odd ...
@order = 8; @transition = 0.1
coeff = polyphase_IRR_coeff.compute_coefs_spec_order_tbw(@order,@transition)
coefs = coeff
coefs_even = coefs.values_at(* coefs.each_index.select {|i| i.even?})
coefs_odd ...
- Mon Jul 13, 2015 10:11 pm
- Forum: User Examples
- Topic: Hilbert Shifter
- Replies: 35
- Views: 141356
Re: Hilbert Shifter
How create coeff. in pair? I set @order = 8; @transition = 0.001 First line coeff?
coeff = [
0.15792150085531764,
0.471 13659195211427,
0.725103231339305,
0.8708226386356741,
0.9422417392772633,
0.9749764749218756,
0.9898478236632062,
0.997282698317513
]
coeff = [
0.15792150085531764,
0.471 13659195211427,
0.725103231339305,
0.8708226386356741,
0.9422417392772633,
0.9749764749218756,
0.9898478236632062,
0.997282698317513
]
- Mon Jul 13, 2015 7:18 pm
- Forum: User Examples
- Topic: Hilbert Shifter
- Replies: 35
- Views: 141356
Re: Hilbert Shifter
Big thank you! Work. As I understand it possible any longer? How do you expect the coefficients ?
- Mon Jul 13, 2015 12:59 pm
- Forum: User Examples
- Topic: Hilbert Shifter
- Replies: 35
- Views: 141356
Re: Hilbert Shifter
Guys, in this example - endless phaser stereo.fsm great phase shift, but i dont understand how it work, code in assambler. Where is i find example 16 order Hilbert shift on Flowstone code? I have example 8 order, but 16 real better.