如何利用Python实现简易的音频播放器

作者:LeBron?Le 时间:2022-07-16 11:47:32 

1. 需要用到的Python库

  • pygame

  • tkinter

2. 简易UI设计

audio_player = Tk()
audio_player.title('Audio Player v1.0')
audio_player.geometry('100x100+570+200')
audio_player.maxsize(height=110, width=220)
audio_player.minsize(height=110, width=220)

3. 功能模块实现

3.1 选择音频文件进行播放

def selectFile():
    file = filedialog.askopenfile(mode='r', filetypes=[('AudioFile', '*.mp3')])
    global filePath
    filePath = str(file).split("'")[1]
    try:
        playAudio()
    except:
        pass

3.2 控制音频播放、暂停

def changeText(text):
    if text == 'play':
        return 'pause'
    if text == 'pause':
        return 'play'

def playStop():
    playBtn.config(text=changeText(playBtn.config('text')[4]))
    if playBtn.config('text')[4] == 'pause':
        mixer.music.unpause()
    else:
        if playBtn.config('text')[4] == 'play':
            mixer.music.pause()

3.3 控制音频音量大小

这里可以定义一个全局变量x,初始化为值0.5。

def audioINC(y):
    mixer.music.set_volume(y + 0.1)
    global x
    x += 0.1

def audioDEC(y):
    mixer.music.set_volume(y - 0.1)
    global x
    x -= 0.1

3.4 播放器初始化等细节

def playAudio():
    try:
        mixer.init()
        mixer.music.load(filePath)
        mixer.music.set_volume(x)
        playBtn.config(text='pause')
        mixer.music.play()
    except:
        pass

4. 运行

frame = Frame(app)
frame.place(x=35, y=20)

openBtn = Button(frame, text='OpenFile', command=selectFile, width=8).grid(row=0, column=1)

audioDec = Button(frame, text='➖', command=lambda: audioDEC(x)).grid(row=1, column=0)
playBtn = Button(frame, text='...', command=playStop, width=8)
playBtn.grid(row=1, column=1)
audioInc = Button(frame, text='➕', command=lambda: audioINC(x)).grid(row=1, column=2)
restartBtn = Button(frame, text='Restart', command=playAudio, width=8).grid(row=2, column=1)

app.mainloop()

5. 简易音频播放器展示图

如何利用Python实现简易的音频播放器

  • ①点击“OpenFile”按钮可以打开本地音频文件

  • ②“➖”和“➕”分别控制音量的减小和增大

  • ③点击"Restart"按钮可以重新播放当前选中的音频

6. 总结

本文仅仅是实现了一个简易的音频播放器,UI极其简陋,为了仅仅是实现音频播放的功能,仅供学习参考。

来源:https://blog.csdn.net/hutianle/article/details/123204633

标签:Python,音频,播放器
0
投稿

猜你喜欢

  • 对跨多个表格的数据组合时需要用到的SQL

    2009-01-06 11:18:00
  • 优雅地扩大链接响应区域

    2010-09-25 13:04:00
  • python实现scrapy爬虫每天定时抓取数据的示例代码

    2022-05-04 22:33:18
  • 基于Python实现视频转字符画动漫小工具

    2022-12-20 04:33:54
  • asp根据出生时间判断生肖

    2008-03-24 19:49:00
  • 利用python实现在微信群刷屏的方法

    2023-05-01 13:56:29
  • oracle逻辑运算符与其优先级简介

    2023-07-15 00:28:26
  • 如何利用Pandas删除某列指定值所在的行

    2023-10-29 11:49:39
  • C# Ado.net实现读取SQLServer数据库存储过程列表及参数信息示例

    2024-01-12 20:16:06
  • js判断运行jsp页面的浏览器类型以及版本示例

    2024-05-13 10:36:10
  • 存储过程优缺点分析

    2024-01-22 09:41:14
  • uniapp路由uni-simple-router实例详解

    2023-09-24 21:27:04
  • python中defaultdict的用法详解

    2021-05-02 11:11:07
  • 使用Python神器对付12306变态验证码

    2021-01-19 00:14:02
  • Ubuntu安装Mysql启用远程连接的详细图文教程

    2024-01-25 16:57:31
  • 很酷的JQuery Solar System

    2007-12-15 08:09:00
  • Python爬虫之教你利用Scrapy爬取图片

    2022-11-02 10:35:02
  • js中Array.forEach跳出循环的方法实例

    2024-05-11 09:32:22
  • 详解SQL游标的用法

    2024-01-18 02:41:30
  • 关于xmlhttp乱码的解决方法

    2008-09-24 17:20:00
  • asp之家 网络编程 m.aspxhome.com