Vionok
By vmuriel on January 22, 2012 12:13 pm
Four samples,
1 //
piano
2 //
y = sin( frame*0.005 )
y = y * (1-(frame / 44100))
3 //
t = frame * 0.9
y = 0.6 * sin( 1.0*t ) * exp( -0.0002*t )
4 //
t = frame * 0.00115
y = 0.6 * math.sin( 0.3*t ) * math.exp(-0.008*t)
y = y + ( 0.3 * sin( 2.0*t ) * exp( -0.010*t ) )
y = y + ( 0.1 * sin( 1.0*t ) * exp( -0.15*t ) )
y = y + 3.3 * pow( y, 2 )
y = y * ( 0.9 + 0.1*cos((50*10)*t) )
y = y * exp( -20*cos(t*50) ) + y
y = y * 0.0000000005
Audio works licensed by author under:
CC Attribution Noncommercial No Derivative Works (BY-NC-ND)