The winsound Module

(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,
    )
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.145.35.247