lag
to a saw
or sin-osc
Happy holidays <3
I'm having a simple problem in overtone which i cant yet explain... trying to connect to midi devices yet overtone.core/midi-connected-devices always returns an empty list.
(defsynth voices [n 8]
(let [src (* 8 (dust (repeat n 2)))
del (comb-l src 0.1 (repeatedly n #(+ (rand 0.004) 0.003)) 4)]
(out 0 (splay del :spread 0.8))))
(repeat)
?) with an Integer to troubleshoot
(demo (* 8 (dust (repeat 8 2))))
does work, so I'm mistaken.
(demo (let [src (* 8 (dust (repeat 8 2)))] (comb-l src 0.1 (repeatedly 8 #(+ (rand 0.004) 0.003)) 4)))
also works (and sounds cool)
(defsynth myv2 [] (let [src (* 8 (dust (repeat 8 2))) del (comb-l src 0.1 (repeatedly 8 #(+ (rand 0.004) 0.003)) 4)] (splay (out 0 del) :spread 0.8)))
(splay (out 0 del))
instead of (splay del)