rsc3/doc/help/unsorted/disk-in.help.scrbl

32 lines
424 B
Text
Raw Normal View History

2022-08-24 13:53:18 +00:00
#lang scribble/manual
@(require (for-label racket))
2022-08-28 10:27:01 +00:00
@title{disk-in}
2022-08-24 13:53:18 +00:00
2022-08-28 10:27:01 +00:00
@racketblock[
2022-08-24 13:53:18 +00:00
(let ((f "/home/rohan/data/audio/metal.wav")
(nc 1))
(with-sc3
(lambda (fd)
(async fd (b-alloc 0 8192 nc))
(async fd (b-read 0 f 0 -1 0 1))
(play fd (out 0 (disk-in nc 0 0))))))
2022-08-28 10:27:01 +00:00
]
2022-08-24 13:53:18 +00:00
2022-08-28 10:27:01 +00:00
@racketblock[
2022-08-24 13:53:18 +00:00
(with-sc3 reset)
2022-08-28 10:27:01 +00:00
]
2022-08-24 13:53:18 +00:00
2022-08-28 10:27:01 +00:00
@racketblock[
2022-08-24 13:53:18 +00:00
(with-sc3
(lambda (fd)
(async fd (b-close 0))
2022-08-28 10:27:01 +00:00
(async fd (b-free 0))))
]
2022-08-24 13:53:18 +00:00