Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 1.47 KB

README.md

File metadata and controls

36 lines (21 loc) · 1.47 KB

Music Player

This is a simple music player application built using the Tkinter library for the graphical user interface and the Pygame library for audio playback. The application allows users to select and play audio files from their local storage.

Local Image

Features

  • Browse and select audio files using the file dialog.
  • Play, pause, and stop audio playback.
  • Display the currently playing track's name.

Libraries Used

  • tkinter: This library is used for creating the graphical user interface (GUI) of the music player application. It provides various widgets and features to design the user interface elements.

  • filedialog: A module from the tkinter library that provides methods to create file dialogs for opening and saving files. In this application, it's used to open a file dialog for selecting audio files.

  • pygame.mixer: This library is used for audio playback. It provides functions for loading and playing audio files. It's used in this application to play the selected audio files.

Usage

  1. Install the required libraries if you haven't already
pip install pygame
  1. Clone or download this repository to your local machine.

  2. Run the MusicPlayer.py script: python MusicPlayer.py


Feel free to customize this README to match your project's details and structure. Make sure to update the installation instructions, usage guidelines, and any other relevant information to accurately reflect your music player application.