You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, first of all 10x for the most optimized AS3 DSP solution on the web!
The bug I found is that FadeInFilter doesn't work properly but only creates glitch sounds out of my mp3 loop. The code is like:
var desc:AudioDescriptor = new AudioDescriptor();
var src:IAudioSource = new SoundSource(new Loop); //Loop is my Sound class
var amp:IAudioSource = new FadeInFilter(src, 4);
player.play(amp);
I tried assigning 'amp' var with:
AmpFilter(src, new ADSREnvelopeGenerator(desc, 2, 0, 1, 0.7, 3));
In this case I get silence in attack phase while decay, hold and release work correctly.
Any suggestions?
The text was updated successfully, but these errors were encountered:
Hi, first of all 10x for the most optimized AS3 DSP solution on the web!
The bug I found is that FadeInFilter doesn't work properly but only creates glitch sounds out of my mp3 loop. The code is like:
I tried assigning 'amp' var with:
AmpFilter(src, new ADSREnvelopeGenerator(desc, 2, 0, 1, 0.7, 3));
In this case I get silence in attack phase while decay, hold and release work correctly.
Any suggestions?
The text was updated successfully, but these errors were encountered: