diff options
Diffstat (limited to 'lambeat.scm')
-rw-r--r-- | lambeat.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lambeat.scm b/lambeat.scm index c6b506b..5214b56 100644 --- a/lambeat.scm +++ b/lambeat.scm @@ -2,7 +2,7 @@ (include "music.scm") ; Bitrate is the number time to sample the music function each second -(define bitrate 44100) +(define bitrate 8000) ; Get the music as a list sampled at the bitrate (define (play t end) @@ -14,4 +14,4 @@ (play (+ t (/ 1 bitrate)) end) '()))) -(play 0 100) +(play 6 100) |