kim taeyun
kim taeyun

Reputation: 1847

sound manipulation engine rsound crashes in DrRacket

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

Answers (1)

soegaard
soegaard

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

Related Questions