Commit e610bd36 by BellCodeEditor

save project

parent 37291c3a
Showing with 10 additions and 5 deletions
...@@ -14,9 +14,12 @@ next_img = pygame.image.load('next.png') # 下一曲按钮 ...@@ -14,9 +14,12 @@ next_img = pygame.image.load('next.png') # 下一曲按钮
logo_img = pygame.image.load('logo.png') # 下一曲按钮 logo_img = pygame.image.load('logo.png') # 下一曲按钮
# 载入音乐 # 载入音乐
path="C:\\Users\\123\\Desktop\\test" music_list = []
file_list=os.lis path = "C:\\Users\\123\\Desktop\\test"
music_list=["歌曲1.wav","歌曲2.wav","歌曲3.wav","歌曲4.ogg"] file_list = os.listdir(path)
for i in file_list:
if i[-4:] == ".wav" or i[-4:] == ".ogg":
music_list.append(i)
music_num=-1 music_num=-1
...@@ -57,8 +60,10 @@ while True: ...@@ -57,8 +60,10 @@ while True:
pygame.mixer.music.pause() pygame.mixer.music.pause()
if pygame.mixer.music.get_busy() == False: if pygame.mixer.music.get_busy() == False:
music_num+=1 music_num += 1
pygame.mixer.music.load('歌曲1.wav') if music_num >= len(music_list) - 1:
music_num = 0
pygame.mixer.music.load(path + "\\" + music_list[music_num])
pygame.mixer.music.play() pygame.mixer.music.play()
# 绘制画面 # 绘制画面
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment