added sample.rkt

This commit is contained in:
Mustafa 2014-05-20 11:04:42 -07:00
parent 4a82d72d3f
commit e8464bca98

20
oregano/sample.rkt Normal file
View file

@ -0,0 +1,20 @@
#lang racket
(require rsc3 rhs/rhs)
(with-sc3 reset)
(send-msg (dump-osc 1))
;; load a smple in a buffer
; (send-async-msg (b-alloc-read 42 "./Samples/Synth Hits/Synth Hit 01.wav" 0 0))
(define fname "./Samples/Synth Hits/Synth Hit 01.wav")
(send-async-msg (b-alloc 0 16380 2))
(send-async-msg (b-read 0 fname 0 -1 0 1))
(audition (out 0 (disk-in 2 ar 0)))