Answers for "python currently playing song os"

1

play music with time in python

from tkinter import*
import pyglet

root = Tk()

player = pyglet.media.Player()
song = "er.mp3"
src = pyglet.media.load(song)
player.queue(src)

def play():
    player.play()

def pause():
    player.pause()

button_1 = Button(root,text = "Play", command = play)
button_1.pack()
button_2 = Button(root,text = "Pause", command = pause)
button_2.pack()

root.mainloop()
Posted by: Guest on November-30-2020
0

Python get the name of the song that is playing

from SwSpotify import spotify
print(spotify.artist()) #returns the artist of the current playing song
print(spotify.song()) #returns the song title of the current playing song
Posted by: Guest on January-26-2021

Python Answers by Framework

Browse Popular Code Answers by Language