You are on page 1of 7

Minor Project

PROJECT NAME : MP3 MUSIC PLAYER WITH PYTHON

TEAM MEMBERS

JYOTI KUSHWAH

MANYA

NAAZ KHAN

GUNJAN SISAUDIYA
Python MP3 Music Player

We will create an mp3 music player in which we can play the song, pause it, resume it,
and navigate from the current song to the next song as well as previous songs. We will be
using Python and its libraries. The first library that we will be using is Tkinter which is a
widely used GUI library offered by python, we do not have to install it separately, as it
comes with python itself.
Next, we will be using the mixer module of a very famous python library called Pygame.
Pygame is basically used to create video games, it includes computer graphics and sound
libraries. Mixer is one such sound library. Then, we will use the os library of python to
interact with the Operating system
Project Prerequisites

This project requires good knowledge of python and the Tkinter library. Tkinter is the
python binding to the Tk toolkit which is used across many programming languages for
building Graphical user interface which is GUI. To work on this project basic
understanding of the pygame module is also required
.To work on python mp3 player basic understanding of python programming language,
tkinter, and mixer module of pygame would be helpful.
A basic understanding of Tkinter widgets would also be required, but don’t worry as we
will be explaining every line of code as we go developing this mp3 player project.
Unlike the Tkinter library, we are required to install the Pygame library.
What is Tkinter?

 Tkinter is the Python interface to Tk, which is the GUI toolkit for Tcl/Tk. Tcl
(pronounced as tickle) is a scripting language often used in testing,
prototyping, and GUI development. Tk is an open-source, cross-platform
widget toolkit used by many different programming languages to build GUI
programs. Python implements the Tkinter as a module. Tkinter is a wrapper
of C extensions that use Tcl/Tk libraries. Tkinter allows you to develop
desktop applications. It’s a very good tool for GUI programming in Python.
What is Pygame Mixer – Sound and music

 The Python Pygame Mixer Library brings in support Audio and Sound playback.
The great thing about it is that it’s not just restricted to making games. You
can use the Mixer library all on it’s own as a stand alone library to play sound
and music in your average Python program
 The sound effects used in this article have been acquired from the site,
Freesound. You can find thousands of different sound effects for your
program from this site, free of of charge or copyright issues.
Steps to Create this project

Below are the steps to create Python MP3 Player: 1.Import modules 2.Initializing
root window 3.Create a function for adding and playing music 4.Make icon and
logo 5.Create music player buttons
ThanK You

You might also like