Reputation: 1847
For sound manipulation I am reading a tutorial about John Clements' rsound package on PLaneT. In the rsound tutorial, it says to try
(require (planet "main.rkt" ("clements" "rsound.plt" 1 10)))
(rsound-play ding)
but every time I try this, DrRacket crashes. However, (rsound-read path)
does not cause DrRacket to crash.
Anybody know how to fix this?
Upvotes: 2
Views: 253
Reputation: 31145
Have you tried the new version?
(require (planet clements/rsound:2:12))
http://planet.racket-lang.org/package-source/clements/rsound.plt/2/12/planet-docs/rsound/index.html
Upvotes: 1