Mercurial > hg > jslab
view examples/sound/sampled/record.scm @ 5:b67a33c44de7
Remove some crap, etc
author | samer |
---|---|
date | Fri, 05 Apr 2019 21:34:25 +0100 |
parents | bf79fb79ee13 |
children |
line wrap: on
line source
; shows how to record from audio input a wav file (load "audio.scm") (load "lineout.scm") (put "regulated" #f) (define fmt (mono 44100)) (lineout (filesnk "out.wav" fmt) (linein (linesrc fmt) 1024 1024)) (expose) (start)