python播放wav音频文件代码详解编程语言

# play a wave sound on a Windows Box 
# Python23 tested   vegaseat   2/8/2005 
import winsound 
import time 
# pick a wave file supplied by Windows XP or one of your own ... 
# soundfile = "c://Windows//Media//chimes.wav" 
# Python also accepts the forward slash 
soundfile = "c:/Windows/Media/chimes.wav" 
winsound.PlaySound(soundfile, winsound.SND_FILENAME|winsound.SND_ASYNC) 
# wait one and a half seconds 
time.sleep(1.5) 
# play the system exit sound if set 
winsound.PlaySound("SystemExit", winsound.SND_ALIAS)

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/8294.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论