rsc3/doc/examples/ugen/envelopes/detect-silence.help.scm

11 lines
309 B
Scheme
Raw Normal View History

2022-08-24 13:53:18 +00:00
;; (detect-silence in amp time doneAction)
;; If the signal at `in' falls below `amp' for `time' seconds then
;; `doneAction' is raised.
(let ((s (mul (sin-osc ar 440 0) (mouse-y kr 0 0.4 0 0.1))))
(audition (mrg2 (detect-silence s 0.1 0.2 remove-synth)
(out 0 s))))
(with-sc3 display-server-status)