Mercurial > hg > jslab
view examples/sound/sampled/rec.scm @ 0:bf79fb79ee13
Initial Mercurial check in.
author | samer |
---|---|
date | Tue, 17 Jan 2012 17:50:20 +0000 |
parents | |
children |
line wrap: on
line source
; shows how to record from audio input to standard output in WAV format (load "audio.scm") (load "lineout.scm") (put "regulated" #f) (define fmt (mono 44100)) (lineout (filesnk System.out$ fmt) (linein (linesrc fmt) 2048 2048)) (expose) (start)