我正在使用Ubuntu 10.4并按照教程’Pummel the chimp并赢得$$$’学习PyGame.
我制作了两个’.wav’文件,但是当我尝试播放它们时,我会发出一种奇怪的声音,就像砰的一声,非常短暂.
我没有收到任何错误消息.为什么这不能按预期工作?
>>> import pygame
>>> pygame.init()
(6, 0)
>>> def load_sound(name):
class NoneSound(object):
def play(self): pass
if not pygame.mixer:
return NoneSound()
fullname = os.path.join('data', name)
try:
sound = pygame.mixer.Sound(fullname)
except pygame.error, message:
print 'Cannot load sound:', name
raise SystemExit, message
return sound
>>> whiff_sound = load_sound('whiff.wav')
>>> whiff_sound.play()
<Channel object at 0xb772f1c0>
>>>
Here is the wav i’m using.(断链)
最佳答案 我有一个声音相同的问题,我在一个名为WavePad Sound Editor的程序中打开我的声音并将文件重新保存为.wav并将采样率设置为22050 Hz,这解决了我的问题.