我在 2.7 中的 PyGame 混音器无法使用声音选项。我可以使用mixer.music,但不能使用mixer.sound,使用mixer.sound它会发出很小的滴答声然后停止。代码:
import pygame
pygame.mixer.init(frequency=22050, size=-16, channels=2, buffer=4096)
song = pygame.mixer.Sound("song.mp3")
pygame.mixer.Sound.play(song)
没有错误,它只是不会播放,并且会发出很小的滴答声。在 Windows 7-x64 顺便说一句。