摘要:
import("stdfaust.lib"); declare options "[midi:on]"; freq = hslider("freq[midi:key 108]", 440, 50, 1000, 0.1); process = os.osc(freq); https://faustdo
阅读全文
摘要:
import("stdfaust.lib"); // 0 1 2 3: sin,tri,saw,square wave_shape = hslider("合成器波形选择[style:knob]",0,0,3,1); // 0 1 2 3: sin,tri,saw,square lfo_type =
阅读全文
摘要:
import("stdfaust.lib"); // 0 1 2 3: sin,tri,saw,square wave_shape = hslider("合成器波形选择[style:knob]",0,0,3,1); // 0 1 2 3: sin,tri,saw,square lfo_type =
阅读全文
摘要:
import("stdfaust.lib"); volume_lfo = os.osc(hslider("lfo_rate",0,0,16,1)); process = os.osc(440) *volume_lfo; lfo极性修正版本 import("stdfaust.lib"); volume
阅读全文