使用 Snack 在 python 中播放 WAV 文件
所以我下载了 Snack 并将 Snacklib 放入 python/tcl 中,并将 tkSnack.py 放入 python/Lib 中,但我仍然没有听到任何声音。我没有收到任何错误,但我仍然没有收到任何声音。这是我的代码...
from Tkinter import *
from tkSnack import *
root = Tk()
tkSnack.initializeSnack(root)
snd = Sound()
snd.read('ex1.wav')
snd.play()
如果有人有任何建议,我们将不胜感激。
So I downloaded Snack and put the Snacklib in python/tcl and put the tkSnack.py into python/Lib but i still dont get any sound. I'm not getting any errors but im still not getting any sound.Here's my code...
from Tkinter import *
from tkSnack import *
root = Tk()
tkSnack.initializeSnack(root)
snd = Sound()
snd.read('ex1.wav')
snd.play()
If anyone has any advice it would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
难道你不应该为 tk 添加主循环吗?
请参阅手册,它建议了其他方法也正在加载。
Shouldn't you be adding the mainloop for tk?
See the manual, it suggests other ways of loading too.