在MAC上使用Kivy和python播放wav文件时没有声音

时间:2015-10-17 21:03:23

标签: python-2.7 audio kivy wav

我正在使用声音加载器模块,当运行快速测试方法播放声音时,没有听到任何声音。

找到文件,因为我可以拾取长度和位置并将其输出,但声音不会播放。

我在iTunes中测试了WAV文件,它确实可以正常工作。

任何帮助将不胜感激。代码和日志输出如下:

def playSound():
    sound = SoundLoader.load('hondarev2.wav')
    if sound:
        print("Sound found at %s" % sound.source)
        sound.volume = 1
        sound.loop = True
        sound.play()
        print("Sound is %.3f seconds" % sound.length)

enter image description here

0 个答案:

没有答案