Mercurial > hg > jslab
diff examples/sound/sampled/lineio.scm @ 0:bf79fb79ee13
Initial Mercurial check in.
author | samer |
---|---|
date | Tue, 17 Jan 2012 17:50:20 +0000 |
parents | |
children | b67a33c44de7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/sound/sampled/lineio.scm Tue Jan 17 17:50:20 2012 +0000 @@ -0,0 +1,8 @@ +(load "audio.scm") +(load "lineout.scm") + +; audio input with a frame size of 1024 and a hop size of 512 +; is routed directly to audio output, which must also be informed +; that hop size is 512. +(lineout (linesnk) (linein (linesrc) 1024 512) 512) +(expose)