how to make your own MP3 music player in python using Tkinter

Backtworace
Apr 16, 2021

The original article are also available see for source code https://pythonslearning.com/2021/04/how-to-make-your-own-mp3-music-player-in-python-using-tkinter.html

The media player is in dark theme with all the functionalities of a modern media player we can adjust the volume from the player switch back and front to previous and next songs. We can shuffle our playlist and also can move the song to any position as we want using the song slider.

Which Packages Used for create own Mp3 music player using python

from tkinter import *
import tkinter.ttk as ttk
import pygame
import os
from PIL import ImageTk,Image
import random
from tkinter import filedialog
import time
from mutagen.mp3 import MP3

For detailed see this blog post

https://pythonslearning.com/2021/04/how-to-make-your-own-mp3-music-player-in-python-using-tkinter.html

--

--