当我尝试在Pygame中播放声音时出现错误

时间:2020-01-28 18:59:36

标签: python pygame

尝试在pygame中播放声音时出现错误。这是我的代码

import pygame
pygame.init()


pygame.mixer.music.load('easy going.mp3')
pygame.mixer.music.play(0)

这是它给我的错误

第5行中的文件“ c:/ Users / Isaiah / Desktop /我的所有程序/ pygame sound.py” pygame.mixer.music.load('easy going.mp3') pygame.error:无法打开“ easy go.mp3”

1 个答案:

答案 0 :(得分:1)

我知道了!

import pygame

pygame.mixer.init()

sound = pygame.mixer.Sound(r"C:\Users\Isaiah\Desktop\easy_going (online-audio-converter.com).wav")
s = pygame.mixer.Sound.play(sound)

#Delay loop
while s.get_busy():
    pygame.time.delay(100)