| 描述: | an acoustic bass guitar synthesized using SuperCollider. here's the code SynthDef(help_dwgplucked, { |out9, freq52, amp0.7, gate0.01, c322042,release0.5, pan0| var inp PlayBuf.ar(2,Buffer.read(s, "/path/to/acoustic bass test.flac",0,5900,action:Harmonics.new(4096))); var son DWGPlucked.ar(freq, amp, gate,0.6,0,c3,inp,release);Amplitude.ar(inp,0.5,2); Out.ar(out, Pan2.ar(son 0.04, pan)); }).add;Pbind( instrument, help_dwgplucked, delta , Pseq(1,inf), dur , 1, note, Pseq(,inf), stepsPerOctave, 12 ).play; |