DEV Community

Sachin pagar
Sachin pagar

Posted on

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

The Original article like is available so let's see:
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.
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
See original post for detailed explanation how to make your own MP3 music player in python using Tkinter
Best of luck !!

Top comments (0)