-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
33 lines (29 loc) · 785 Bytes
/
main.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
from gifplayer import *
import sys
from pygame import mixer # Load the required library
mixer.init()
mixer.music.load(sys.argv[1])
mixer.music.play(-1)
play = "no"
def close_window():
mixer.music.stop()
quit()
def callback(event):
global play
if play == "yes":
play = "no"
mixer.music.pause()
else:
play = "yes"
mixer.music.unpause()
if __name__ == "__main__":
from Tkinter import Tk, Label
root = Tk()
root.protocol("WM_DELETE_WINDOW", close_window)
root.title('My MP3 Player --- ' + sys.argv[1])
root.resizable(False, False)
# Add the path to a GIF to make the example working
l = AnimatedGIF(root, "/root/Documents/Code Projects/MP3 Player/gif.gif")
l.bind("<Button-1>", callback)
l.pack()
root.mainloop()