Quote:
Originally Posted by Paul99
Okay thanks for clearing that up Michael.
I will experiment further until I get the sound from your mp3 because to me that sounds awesome!
|
I seem to remember that I used "Tremolo" for that recording. Now I mostly use "Phaser" that to me sounds slightly less "realistic" but more "pleasant".
I modified the "tremolo" JSFX to offer a higher resolution for the tremolo speed. You might want to replace the sourcecode with that one:
Code:
// This effect Copyright (C) 2004 and later Cockos Incorporated
// License: GPL - http://www.gnu.org/licenses/gpl.html
desc: Tremolo
//tags: guitar tremolo gain modulation
//author: Cockos
slider1:4<0,100,1>Frequency (Hz*10)
slider2:-6<-60,0,1>Amount (dB)
slider3:0<0,1>Stereo Seperation
@slider
adv=$pi*0.2*slider1/srate;
sep=slider3*$pi;
amount=2 ^ (slider2/6);
sc=0.5*amount; amount=1-amount;
@sample
spl0=spl0*((cos(pos) + 1) * sc + amount);
spl1=spl1*((cos(pos+sep) + 1) * sc + amount);
pos+=adv;