制作這個(gè)播放器的目的是為了將下載下來的mp3文件進(jìn)行隨機(jī)或是順序的播放冠摄。選擇需要播放的音樂的路徑,選擇播放方式几缭,經(jīng)過測試可以完美的播放本地音樂河泳。
在開始之前介紹一個(gè)免費(fèi)下載mp3音樂的網(wǎng)站,有需要的可以下載自己喜歡的音樂年栓。當(dāng)然有各大音樂平臺會員的大佬就不需要了拆挥。
http://music.y444.cn/#/
缺少音樂素材的可以去免費(fèi)下載即可,準(zhǔn)備好音樂素材后將其放到一個(gè)文件夾下面即可某抓。
在應(yīng)用實(shí)現(xiàn)過程中纸兔,總共使用了下面這些庫,特別需要注意的是這個(gè)庫playsound使用的版本是1.3.0否副,聽說其他版本在播放音樂時(shí)可能存在問題汉矿。也可以將播放音樂的部分換成其他的實(shí)現(xiàn)方式。
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
from PyQt5.QtGui import *
import sys
from QCandyUi import CandyWindow
import random, os
from playsound import playsound
最先實(shí)現(xiàn)的是播放音樂的業(yè)務(wù)邏輯备禀,這里是采用pyqt5自帶的QThread線程來實(shí)現(xiàn)的洲拇,目的是將播放音樂的部分作為一個(gè)子線程來運(yùn)行奈揍,防止與UI界面的主線程產(chǎn)生阻塞。
實(shí)現(xiàn)子線程的部分是一樣的范式赋续,一般情況下按照這種范式實(shí)現(xiàn)男翰,屢試不爽。在前面的UI桌面應(yīng)用中幾乎都是使用這種方式來實(shí)現(xiàn)多線程的蚕捉。
class PlayThread(QThread):
finished = pyqtSignal(bool)
def __init__(self, parent=None):
super(PlayThread, self).__init__(parent)
self.parent = parent
self.working = True
def __del__(self):
self.working = False
self.wait()
def run(self):
music_files = os.listdir(self.parent.music_file_path.text())
print(music_files)
for index in range(0, len(music_files) - 1):
if self.parent.play_type_selected.currentText() == '隨機(jī)播放':
index = random.randint(0, len(music_files) - 1)
print(index)
playsound(os.path.join(self.parent.music_file_path.text(), music_files[index]))
self.finished.emit(True)
音樂播放的業(yè)務(wù)邏輯實(shí)現(xiàn)完成了奏篙,接下來來實(shí)現(xiàn)UI界面的部分。應(yīng)用就是簡單的設(shè)計(jì)了一下不是很復(fù)雜迫淹。
pyqt5的UI界面的實(shí)現(xiàn)方式主要是組件的布局和槽函數(shù)的引用秘通,下面是UI界面布局及各個(gè)槽函數(shù)的初始化及引用。以及如何界面的主線程中調(diào)用子線程的使用敛熬。
class MusicUI(QWidget):
def __init__(self):
super(MusicUI, self).__init__()
self.init_ui()
def init_ui(self):
self.setWindowTitle('本地音樂播放器 公眾號:[Python 集中營]')
self.setWindowIcon(QIcon('音樂.ico'))
self.setFixedWidth(500)
self.setFixedHeight(100)
hbox1 = QHBoxLayout()
self.music_file_path = QLineEdit()
self.music_file_path.setReadOnly(True)
self.music_file_btn = QPushButton()
self.music_file_btn.setText('路徑')
self.music_file_btn.clicked.connect(self.music_file_btn_click)
hbox1.addWidget(self.music_file_path)
hbox1.addWidget(self.music_file_btn)
hbox2 = QHBoxLayout()
self.play_type_selected = QComboBox()
self.play_type_selected.addItem('隨機(jī)播放')
self.play_type_selected.addItem('順序播放')
self.start_btn = QPushButton()
self.start_btn.setText('開始播放')
self.start_btn.clicked.connect(self.start_btn_click)
hbox2.addWidget(self.play_type_selected)
hbox2.addWidget(self.start_btn)
vbox = QVBoxLayout()
vbox.addLayout(hbox1)
vbox.addLayout(hbox2)
self.thread_ = PlayThread(self)
self.thread_.finished.connect(self.finished)
self.setLayout(vbox)
def music_file_btn_click(self):
dir = QFileDialog.getExistingDirectory(self, "選擇文件夾", os.getcwd())
self.music_file_path.setText(dir)
def start_btn_click(self):
self.start_btn.setEnabled(False)
self.thread_.start()
def finished(self,finished):
if finished is True:
self.start_btn.setEnabled(True)
# 最后肺稀,使用mian函數(shù)將界面布局的整個(gè)過程加入到主體循環(huán)中就大功告成了。
if __name__ == '__main__':
app = QApplication(sys.argv)
w = CandyWindow.createWindow(MusicUI(), theme='blue', title='本地音樂播放器 公眾號:[Python 集中營]',
ico_path='音樂.ico')
w.show()
sys.exit(app.exec_())
完整源代碼已經(jīng)保存在百度網(wǎng)盤上面应民,將上述代碼塊全部copy到開發(fā)中運(yùn)行即可话原,或者在公眾號內(nèi)回復(fù)'1002'獲取下載鏈接直接下載.py文件到開發(fā)工具運(yùn)行也是可以的。
創(chuàng)作不易诲锹,歡迎大家積極提問繁仁,有python相關(guān)的問題請留言,看到即回復(fù)归园,感謝大家一直的支持黄虱!
【往期精彩】
自動(dòng)化工具:PyAutoGUI的鼠標(biāo)與鍵盤控制,解放雙手的利器庸诱!
來自程序猿的生日蛋糕你見過嗎捻浦?
懶人python操作,代碼中永遠(yuǎn)只需要導(dǎo)入一個(gè)庫...
自動(dòng)化辦公:手機(jī)號碼提取器桥爽,使用正則表達(dá)式輕松提取文本文件中的手機(jī)號碼...
剛剛發(fā)現(xiàn)的可視化動(dòng)態(tài)圖庫ipyvizzu朱灿,太好看了!