为了播放我的声音,我有这个工作代码:
import pygame
pygame.init()
pygame.mixer.pre_init(44100, 16, 2)
screen = pygame.display.set_mode([100,100])
print(pygame.mixer.get_num_channels(),"cannels")
sounda = pygame.mixer.Sound("track.mp3")
print("Length",sounda.get_length())
print("Volume",sounda.get_volume())
channela = sounda.play()
while channela.get_busy():
pygame.time.delay(100)
pygame.quit()
你可以看到我主要使用 .mp3 文件。
但我的问题是它可以播放一些声音,但其他声音会导致错误,即无法加载声音。mp3文件之间有什么区别吗,你知道如何解决这个问题吗?
提前致谢