Skip to content

Commit 1a77bb2

Browse files
committed
added
1 parent 0eedf05 commit 1a77bb2

10 files changed

+131
-0
lines changed

Music-Player/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Shitij Agrawal
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Music-Player/README.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!--Please do not remove this part-->
2+
![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99)
3+
![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)
4+
5+
# Music Player
6+
7+
8+
## 🛠️ Description
9+
A simple music player in python which enables you to play, next, back, pause, resume the music
10+
11+
## ⚙️ Languages or Frameworks Used
12+
This project is created using python programming language.
13+
Modules : tkinter, vlc and glob
14+
15+
## 🌟 How to run
16+
Running the script is really simple! Just open a terminal in the folder where your script is located and run the following commands:
17+
18+
```sh
19+
pip install -r requriment.txt
20+
```
21+
22+
```sh
23+
python music_player.py
24+
```
25+
26+
27+
## 📺 Demo
28+
<p align="center">
29+
<img src="https://github.com/mr-shitij/Music-Player-In-Python/blob/main/images/Screenshot%20from%202022-10-02%2011-19-40.png" width=70% height=70%>
30+
31+
## 🤖 Author
32+
[mr-shitij](https://github.com/mr-shitij)
33+

Music-Player/images/backward.png

2.38 KB
Loading

Music-Player/images/forward.png

2.39 KB
Loading

Music-Player/images/pause.png

2.16 KB
Loading

Music-Player/images/play.png

2.14 KB
Loading

Music-Player/images/stop.png

2.23 KB
Loading

Music-Player/music_player.py

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
import glob
2+
import tkinter as tk
3+
from tkinter import *
4+
import vlc
5+
6+
7+
def last(list):
8+
return list[-1]
9+
10+
11+
def music_name():
12+
global my_music, music_number
13+
return last(my_music[music_number].split('/'))
14+
15+
16+
def play_music():
17+
global music_number, my_music, player, instance
18+
to_play = my_music[music_number]
19+
media = instance.media_new(to_play)
20+
player.set_media(media)
21+
player.play()
22+
23+
24+
def pause_music():
25+
player.pause()
26+
27+
28+
def next_music():
29+
global music_number, my_music, music_label
30+
if music_number < len(my_music) - 1:
31+
music_number += 1
32+
music_label.config(text=str(music_name()))
33+
34+
35+
def previous_music():
36+
global music_number, my_music, music_label
37+
if music_number > 0:
38+
music_number -= 1
39+
music_label.config(text=str(music_name()))
40+
41+
42+
music_number = 0
43+
44+
window = Tk()
45+
window.geometry('330x120')
46+
window.resizable(False, False)
47+
window.title('Mp3 Player')
48+
49+
instance = vlc.Instance()
50+
player = instance.media_player_new()
51+
52+
my_music = glob.glob('/home/shitij_agrawal/Music/*.mp3') # path to music folder
53+
54+
play_image = PhotoImage(file='images/play.png')
55+
pause_image = PhotoImage(file='images/pause.png')
56+
forward_image = PhotoImage(file='images/forward.png')
57+
backward_image = PhotoImage(file='images/backward.png')
58+
stop_image = PhotoImage(file='images/stop.png')
59+
60+
music_label = tk.Label(window, text=music_name())
61+
62+
play = tk.Button(window, image=play_image, command=play_music)
63+
pause = tk.Button(window, image=pause_image, command=pause_music)
64+
forward = tk.Button(window, image=forward_image, command=next_music)
65+
backward = tk.Button(window, image=backward_image, command=previous_music)
66+
stop = tk.Button(window, image=stop_image, command=lambda: sys.exit())
67+
68+
play.place(x=130, y=50)
69+
pause.place(x=10, y=50)
70+
forward.place(x=190, y=50)
71+
backward.place(x=70, y=50)
72+
stop.place(x=250, y=50)
73+
music_label.place(x=10, y=0)
74+
75+
window.mainloop()

Music-Player/requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python-vlc==3.0.12118

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ SR No | Project | Description | Author
220220
31 | <a href="https://github.com/ndleah/python-mini-project/tree/main/Face_Recognition">Face Recognition | A Face Recognition Project developed using OpenCV Module in Python that displays a Blue Reactangle Frame around Faces. | [Anish Lohiya](https://github.com/AnishLohiya)
221221
32 | <a href="https://github.com/vivekthedev/python-mini-project/tree/main/Slideshare%20to%20PDF">Slideshare to PDF | Download any presentation from slideshare to a PDF form without any signup or login | [Vivek](https://github.com/vivekthedev)
222222
33 | <a href="https://github.com/ndleah/python-mini-project/tree/main/Rock_Paper_Scissors_Spock">Rock Paper Scissors Spock | Rock Paper Scissors Spock has extra steps to it which add a little spice and creativity over the generic Rock Paper Scissors game we all know and love. The player gets to choose between Rock, Paper, Scissor, Lizard or Spock. If they choose correctly, then the player wins. Have fun and good luck! | [Anokh1](https://github.com/Anokh1)
223+
34 | <a href="https://github.com/ndleah/python-mini-project/tree/main/Music-Player">Music Player | A simple music player in python which enables you to play, next, back, pause, resume the music | [mr-shitij](https://github.com/mr-shitij)
223224

224225

225226
## ![image](IMG/like.svg) Our Contributors

0 commit comments

Comments
 (0)