Commit 0988f6b4 by BellCodeEditor

auto save

parent c7ecfa8f
Showing with 12 additions and 3 deletions
import pygame
import os
from pygame import locals
pygame.init() # 初始化
......@@ -14,7 +15,12 @@ logo_img = pygame.image.load('logo.png') # 下一曲按钮
# 载入音乐
music=['歌曲1.wav','歌曲2.wav','歌曲3.wav','歌曲4.ogg']
music1=['歌曲1.wav']
path='C:\\Users\\玛酷001\\Desktop\\pygame_lesson5_diy2'
y=os.listdir(path)
for i in y:
if i[-4]=='.wav' or i[4:] =='.ogg':
music1.append(i)
num=-1
volume = 0.2
pygame.mixer.music.set_volume(volume) # 初始播放音量
......@@ -53,11 +59,14 @@ while True:
play_button = play_img
pygame.mixer.music.pause()
if pygame.mixer.music.get_busy() == False:
num=num+1
if num>len(music)-1:
if num >len(music1)-1:
num=0
pygame.mixer.music.load(music[num])
print(music1)
pygame.mixer.music.load(path+'\\'+music1[num])
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