Yes, if you're using the OpenAL sound driver. Suppose snd is a sound
you want to play back slowly. Do:
player = pyglet.media.Player()
player.queue(snd)
player.pitch = 0.5
player.play()
This will play at half speed so it will sound one octave down.
If you are using Windows or Linux you may have to install the latest
OpenAL sound drivers. In Linux, especially, older OpenAL drivers are
very buggy (get OpenAL-soft).
To declare that you want to use OpenAL or nothing, at the beginning of
your program do:
pyglet.options['audio'] = ('openal', 'silent')
--
Nathan Whitehead