https://github.com/racket/gui/issues/239```
#lang racket
(require 2htdp/image
(only-in racket/gui/base play-sound))
(put-preferences '(GRacket:playcmd) '("mpv --no-audio-display ~a"))
(play-sound "./Nl-honk.ogg" #t)
```
because of this:
It uses `aplay` first to try and play the sound but according to this:
> You cannot decode ogg files with aplay. According to the man page, the only formats aplay understands are voc, wav, raw and au. My guess is that aplay interprets the ogg file as raw data, hence the white noise.
so I suggest swapping the order to `sndfile-play` or whichever command line audioplayer is available on most linux installations.
A side issue is that we should probably provide an easier way to import `play-sound` because I want to use it with 2htdp/image with students.