This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
angry.py
74 lines (67 loc) · 1.8 KB
/
angry.py
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
from os import listdir
from os.path import isfile,join
from os import walk
import vlc
from PyQt5.QtWidgets import QApplication, QMainWindow, QPushButton, QWidget ,QVBoxLayout
import os
mypath="E:\\songs\\angry\\"
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
f = []
f2=[]
for (dirpath, dirnames, filenames) in walk(mypath):
f.extend(filenames)
break
for i in f:
if i.endswith(".mp3") or i.endswith(".flac") or i.endswith(".m4a") or i.endswith(".wav") or i.endswith(".wma"):
f2.append(i)
count=0
player=vlc.MediaPlayer("E:\\songs\\angry\\"+str(f2[count]))
def button_pressed():
# player=vlc.MediaPlayer("B:\\BAPU\\01) I Ain't No Joke.mp3")
global count
global player
player.play()
def button2_pressed():
global player
player.pause()
def nextS():
global count
# count+=1
global player
player.stop()
count+=1
player=vlc.MediaPlayer("E:\\songs\\angry\\"+str(f2[count]))
player.play()
# player=vlc.MediaPlayer("B:\\BAPU\\"+str(f.pop()))
def prevS():
global count
global player
player.stop()
count-=1
player=vlc.MediaPlayer("E:\\songs\\angry\\"+str(f2[count]))
player.play()
# while True:
# pass
app = QApplication([])
win = QMainWindow()
central_widget = QWidget()
button = QPushButton('PLAY')
button.clicked.connect(button_pressed)
button2=QPushButton('PAUSE')
button2.clicked.connect(button2_pressed)
button3=QPushButton("NEXT")
button3.clicked.connect(nextS)
button4=QPushButton('PREV')
button4.clicked.connect(prevS)
layout = QVBoxLayout(central_widget)
layout.addWidget(button)
layout.addWidget(button2)
layout.addWidget(button3)
layout.addWidget(button4)
win.setCentralWidget(central_widget)
# print(vlc.__version__)
player.play()
# win.setCentralWidget(button)
win.show()
app.exit(app.exec_())
# print(f2)