Search found 47 matches

by borodadada
Fri Aug 14, 2015 5:17 pm
Forum: General
Topic: Real-time pitch
Replies: 2
Views: 9795

Real-time pitch

Hello, where can I find example real-time pitch shift? Pitch shift always base to FFT?
by borodadada
Sun Aug 02, 2015 2:20 pm
Forum: General
Topic: Dynamic freq to lfo.
Replies: 4
Views: 10715

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...
by borodadada
Sat Aug 01, 2015 8:11 am
Forum: General
Topic: Dynamic freq to lfo.
Replies: 4
Views: 10715

Re: Dynamic freq to lfo.

This is the only way?
by borodadada
Fri Jul 31, 2015 1:34 pm
Forum: General
Topic: Dynamic freq to lfo.
Replies: 4
Views: 10715

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
by borodadada
Sat Jul 18, 2015 9:02 am
Forum: General
Topic: 1 pole lowpass filter
Replies: 3
Views: 8875

Re: 1 pole lowpass filter

In 1 pole LP filter.

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 ?
by borodadada
Fri Jul 17, 2015 12:21 pm
Forum: General
Topic: 1 pole lowpass filter
Replies: 3
Views: 8875

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
by borodadada
Tue Jul 14, 2015 8:12 am
Forum: User Examples
Topic: Hilbert Shifter
Replies: 35
Views: 141399

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 ...
by borodadada
Mon Jul 13, 2015 10:11 pm
Forum: User Examples
Topic: Hilbert Shifter
Replies: 35
Views: 141399

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
]
by borodadada
Mon Jul 13, 2015 7:18 pm
Forum: User Examples
Topic: Hilbert Shifter
Replies: 35
Views: 141399

Re: Hilbert Shifter

Big thank you! Work. As I understand it possible any longer? How do you expect the coefficients ?
by borodadada
Mon Jul 13, 2015 12:59 pm
Forum: User Examples
Topic: Hilbert Shifter
Replies: 35
Views: 141399

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.