Commit 61a60af8 by BellCodeEditor

save project

parent 77cfbc8d
Showing with 5 additions and 4 deletions
...@@ -13,7 +13,8 @@ next_img = pygame.image.load('next.png') # 下一曲按钮 ...@@ -13,7 +13,8 @@ next_img = pygame.image.load('next.png') # 下一曲按钮
logo_img = pygame.image.load('logo.png') # 下一曲按钮 logo_img = pygame.image.load('logo.png') # 下一曲按钮
n=-1 n=-1
ml=[] ml=[]
f=os.listdir("C:\\Users\\6\\Desktop\\test") p="C:\\Users\\6\\Desktop\\test\\"
f=os.listdir(p)
# 载入音乐 # 载入音乐
for i in f: for i in f:
if f[-4:]==".wav"or f[-4:]==".ogg": if f[-4:]==".wav"or f[-4:]==".ogg":
...@@ -53,12 +54,12 @@ while True: ...@@ -53,12 +54,12 @@ while True:
else: else:
play_button = play_img play_button = play_img
pygame.mixer.music.pause() pygame.mixer.music.pause()
if pygame.mixer.music.get_busy() == False: if pygame.mixer.music.get_busy() == False:
n+=1 n+=1
if n>len(ml)-1: if n>len(f)-1:
n=0 n=0
pygame.mixer.music.load("C:\\Users\\6\\Desktop\\test\\"+ml[n]) pygame.mixer.music.load(p+"\\"+ml[n])
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