Revision 2 as of 2006-11-25 16:33:42

Clear message

homepage: http://sndobj.sourceforge.net/#python

Available examples not in manual (please add):

#simple synth with band limited noise, oscilators, #and alternating L-R output

import sndobj import time

tab = sndobj.HarmTable() osc = sndobj.Oscili(tab, 440, 10000) noise = sndobj.Randh(100000, 10000)

x=1 y=2

outp = sndobj.SndRTIO(2) outp.SetOutput(x, osc) outp.SetOutput(y, noise)

mod = sndobj.Oscili(tab, 2, 560) osc.SetFreq(440,mod)

mod2=sndobj.Oscili(tab, 4, 50) mod.SetFreq(2, mod2)

q=2 mod3 = sndobj.Oscili(tab, q, 1000) noise.SetFreq(1000, mod3)

thread = sndobj.SndThread() thread.AddObj(mod) thread.AddObj(mod2) thread.AddObj(mod3) thread.AddObj(osc) thread.AddObj(noise) thread.AddObj(outp, sndobj.SNDIO_OUT)

thread.ProcOn()

n=0 while n < 8:

thread.ProcOff()

Unable to edit the page? See the FrontPage for instructions.