当前位置:   article > 正文

用python制作简易的音乐播放器(2.改进:支持网上搜索歌曲)_做一个音乐播放器,可以在网上搜索下载音乐

做一个音乐播放器,可以在网上搜索下载音乐
#下载区

# coding:utf-8
import requests
import json
import urllib.request

headers={'Host':'music.bbbbbb.me',
'User-Agent':'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:65.0) Gecko/20100101 Firefox/65.0',
'Accept':'application/json, text/javascript, */*; q=0.01',
'Accept-Language':'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
'Accept-Encoding':'gzip, deflate',
'Referer':'http://music.bbbbbb.me/',
'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8',
'X-Requested-With':'XMLHttpRequest',
'Content-Length':'47',
'Connection':'keep-alive',
'Pragma':'no-cache',
'Cache-Control':'no-cache'}


def search_Music(mname):
    global headers
    data={'input':mname,'filter':'name','type':'netease','page':'1'}
    url = 'http://music.bbbbbb.me/'
    wbdata = requests.post(url,headers=headers,data=data).text
    data = json.loads(wbdata)
    return data

def ShowList(data):
    i=1
    for n in data['data']: 
        author = n['author']    
        url = n['url']    
        print("编号:",i,"歌手:",author,"下载地址:",url)
        i=i+1
    

def  DownLoad(data,mname,Number):    
    try:
        url=data['data'][Number-1]['url']
        singer=data['data'][Number-1]['author']

        base="G:/3.Google网页下载文件存放处/音乐/歌曲/周杰伦/"
        MusicName=singer+" - "+mname+".mp3"

        filepath=base+MusicName
        urllib.request.urlretrieve(url,filepath)
        
        #添加新歌
        global SongName
        SongName.append(MusicName)
        SongPath.append(filepath)
        
        filepath
        print("下载完成") 
        return True
    except:
        print("下载失败")
        return False

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

#---------------------------------------------------------------------------------------------
import tkinter as tk
from tkinter import *
import tkinter.filedialog
import pygame
import os
from threading import *
import threading
import time
from PIL import ImageTk, Image
import tkinter.scrolledtext
import tkinter.messagebox
import random

#----------------------一、音乐文本读取--------------------
filePath = 'G:\\3.Google网页下载文件存放处\音乐\歌曲\周杰伦\\'
SongName=os.listdir(filePath)   
SongPath =[filePath+i for i in SongName]

Number=0
volume=0.3

Switch=True

#----------------------二、功能区--------------------------------------



#--------------------------1.基本的功能----------------------------

#1.上一曲
def fun1():
    global Number
    
    Number=Number+1
    if Number>len(SongPath)-1:
        Number=0
    pygame.mixer.music.load(SongPath[Number])  
    pygame.mixer.music.play(0)
 
    
    entry_var.set(SongName[Number])
    pass

#2.播放/暂停
def fun2():
    global Number
    global Switch
    pygame.mixer.music.set_volume(volume)  
    if Switch==True:
        pygame.mixer.music.unpause() 
        Switch=False
    else:
        pygame.mixer.music.pause()
        Switch=True         
    pass


#3.下一曲
def fun3():
    global Number
    Number=Number-1
    if Number<0:
        Number=len(SongPath)-1
    pygame.mixer.music.load(SongPath[Number])  
    pygame.mixer.music.play(0)
    
    entry_var.set(SongName[Number])
    pass


#4.增大音量
def fun4():
    global volume
    volume+=0.1
    if volume>1:
        volume=1
    pygame.mixer.music.set_volume(volume)
    

#5.降低音量
def fun5():
    global volume
    volume-=0.1
    if volume<0:
        volume=0
    pygame.mixer.music.set_volume(volume) 


    
#----------------------------------2.下载功能--------------------------------------    
  
#1.搜索   
def Search():
    txtCon.delete(0.0,tk.END) 
    mname=en3.get()
    if mname!="":
        data=search_Music(mname)
        i=1
        for n in data['data']: 
            author = n['author']       
            content="编号:"+str(i)+"歌手:"+author+"\n"
            txtCon.insert(tkinter.INSERT,content)
            i=i+1

#2.下载
def DownLoad_music():
    mname=en3.get()
    Number=int(en4.get())
    data=search_Music(mname)
    ShowList(data)
    boolean=DownLoad(data,mname,Number)
    
    if boolean==True:   #2.验证
        tk.messagebox.showinfo(message="下载成功")#弹出提示框
    else:
        tk.messagebox.showerror(message="下载失败")#弹出错误框

  
#---------------------------3.播放模式---------------------------------



    
    
    
    
    
    
    
#------------------------三、计时器的制作--------------------------    

def os(time) :
    if time<10:
        return "0"+str(time)
    else:
        return str(time)



def clock(seconds):
    if seconds>=60:
        minutes=seconds//60
        seconds=seconds-minutes*60
        return os(minutes)+":"+os(seconds)
    else:
        return "00:"+os(seconds)  
#--------------------------------------------------------

     
class Current_time(threading.Thread):
    
    def __init__(self):
        threading.Thread.__init__(self)
        pass
    

    def clock(seconds):
        if seconds>=60:
            minutes=seconds//60
            seconds=seconds-minutes*60
            return os(minutes)+":"+os(seconds)
        else:
            return "00:"+os(seconds)    

    
    def run(self):
        while 1:
            playtime=pygame.mixer.music.get_pos()
            seconds=int(playtime)//1000

            current_time=clock(seconds)
            entry_var1.set(current_time)
            time.sleep(1)
     
#-----------------------三、面板区-----------------------------------------    



#---------------一、窗口---------------------
root=tk.Tk()        
root.title('音乐播放器')
root["height"]=400  
root["width"]=300    
root.resizable(0,0)

#1.文本框
lal=tk.Label(root,text="欢迎使用音乐播放器")      #在root中创建标签
lal.place(x=50,y=15,width=200,height=50)  #向root放置标签


#---------------二、显示正在播放的歌曲--------------------------

entry_var = tk.StringVar()
entry_var.set('欢迎使用')
en1=tk.Entry(root,textvariable=entry_var,justify=CENTER,state=NORMAL)                       
en1.place(x=50,y=70,width=200,height=15) 

entry_var1 = tk.StringVar()
entry_var1.set('00:00')
en2=tk.Entry(root,textvariable=entry_var1,justify=CENTER)                       
en2.place(x=10,y=5,width=80,height=15) 


#---------------三、音量调节----------------------------

b3=tk.Button(root,text="+",command=fun4)
b3.place(x=50,y=90)

b3=tk.Button(root,text="-",command=fun5)
b3.place(x=65,y=90)



#---------------四、切换歌曲|暂停播放----------------------------------
#1.上一曲按钮
b1=tk.Button(root,text="上一曲",command=fun1)
b1.place(x=80,y=90)


#2.播放按钮
b1=tk.Button(root,text="播放|暂停",command=fun2)  #定义:按钮名称+按钮功能
b1.place(x=130,y=90)          #定义:按钮大小+按钮位置

#3.下一曲按钮
b3=tk.Button(root,text="下一曲",command=fun3)
b3.place(x=195,y=90)



#--------------五、下载功能------------------------------


#1.搜索
en3=tk.Entry(root,justify=CENTER,state=NORMAL)                       
en3.place(x=50,y=150,width=80,height=30) 

b1=tk.Button(root,text="搜索",command=Search)
b1.place(x=135,y=150)

#---------------------------------------------------------

#2.下载
en4=tk.Entry(root,justify=CENTER,state=NORMAL)                       
en4.place(x=180,y=150,width=30,height=30) 

b1=tk.Button(root,text="下载",command=DownLoad_music)
b1.place(x=220,y=150)
#-------------------------------------------------


txtCon=tk.scrolledtext.ScrolledText(root,wrap=tk.WORD)
#txtCon.pack(fill=tk.BOTH)
txtCon.place(x=50,y=200,width=210,height=150)



pygame.mixer.init()
t=Current_time()
t.start()


root.mainloop()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/112105
推荐阅读
相关标签
  

闽ICP备14008679号