切歌以及列表功能完成版本 界面如下:代码如下:import osimport pygamefrom tkinter import *from tkinter.filedialog import askdirectorydef mouseCallBack(*args):indexs = listb.curselection()index = int(...

切歌以及列表功能完成版本 界面如下:
代码如下:
import os
import pygame
from tkinter import *
from tkinter.filedialog import askdirectory
def mouseCallBack(*args):
indexs = listb.curselection()
index = int(indexs[0])
#str_value = str(index)#数字转字符串
print(" mouse click "+path_+"/"+listSongs[index])
curPath = path_+"/"+listSongs[index]
try:
pygame.mixer.music.stop()
except:
print("stop play error")
pygame.mixer.init()
track = pygame.mixer.music.load(curPath)
pygame.mixer.music.play()
def getMp3List(folder):
global list
global listSongs
list = os.listdir(folder)
listSongs = []
counter = 0
#为第一个Listbox设置绑定事件
listb.bind("<<ListboxSelect>>",mouseCallBack)
while counter < len(list):
if os.path.splitext(list[counter])[1]==".mp3":
print(list[counter])
listSongs.append(list[counter])
listb.insert(END,list[counter])
counter +=1
listb.pack()
def selectFile():
global path_
path_ = askdirectory()
path.set(path_)
# print("path "+path)
print("path_ "+path_)
getMp3List(path_)
def about():
label = Label(root, text='花景音乐电脑版\n ', fg='red', bg='white')
label.pack(expand=YES, fill=BOTH)
root = Tk()
path = StringVar()
menubar = Menu(root)
filemenu = Menu(menubar, tearoff=0)
filemenu.add_command(label='打开', command=selectFile)
filemenu.add_command(label='保存')
filemenu.add_separator()
filemenu.add_command(label='退出', command=root.quit)
menubar.add_cascade(label='文件', menu=filemenu)
helpmenu = Menu(menubar, tearoff=0)
helpmenu.add_command(label='关于作者', command=about)
menubar.add_cascade(label='关于', menu=helpmenu)
listb = Listbox(root,width=500,height=300)
root.config(menu=menubar)
root.geometry('800x500')
root.mainloop()
沃梦达教程
本文标题为:Python学习之windows音乐播放器之路(二)


猜你喜欢
- windows安装python2.7.12和pycharm2018教程 2023-09-03
- CentOS7 安装 Python3.6 2023-09-04
- 在centos6.4下安装python3.5 2023-09-04
- Python Pandas如何获取和修改任意位置的值(at,iat,loc,iloc) 2023-08-04
- Python之路-Python中的线程与进程 2023-09-04
- Python实现将DNA序列存储为tfr文件并读取流程介绍 2022-10-20
- python中defaultdict用法实例详解 2022-10-20
- Python 保存数据的方法(4种方法) 2023-09-04
- python中列表添加元素的几种方式(+、append()、ext 2022-09-02
- python线程池ThreadPoolExecutor与进程池ProcessPoolExecutor 2023-09-04