A minimalistic music player with a GUI inspired by the classic iPod interface. The player allows users to play, pause, stop, and navigate through songs seamlessly.
👀
- List available songs from a specified directory
- Play selected song
- Pause & Resume playback
- Stop playback
- Navigate to the next or previous song
- Python 3.x
pygame
tkinter
-
Clone the repository:git clone https://github.com/mmanikandan281/MUSIC-PLAYER-USING-PYTHON.git cd music-player
-
Install required packages:pip install pygame tk
-
Set your music directory: Open the script and modify the path in
list_songs('YOUR_PATH_HERE')
to point to your directory containing music files (either.mp3
or.wav
format).
-
Run the Music Player:python music_player.py
-
Once the player is running, use the interface to select and control playback of your songs.
-
Look and Feel: Customize the player's appearance by adjusting the colors, fonts, and button placements in the script.
-
Extend Functionality: Add more features as you see fit, like volume control, shuffle play, etc.