May 2001
Intermediate to advanced
304 pages
6h 12m
English
(Windows only) The winsound module allows you to play Wave sound files on a
Windows machine. Example 9-9 shows how winsound is used.
Example 9-9. Using the winsound Module
File: winsound-example-1.py
import winsound
file = "samples/sample.wav"
winsound.PlaySound(
file,
winsound.SND_FILENAME|winsound.SND_NOWAIT,
)Read now
Unlock full access