I am new in Python - Pyglet and Stackoverflow. I would like know how to show the current playing time and the total duration of an audio in Pyglet. It is clearly given in Pyglet Docs but I don't excactly understood how to use it properly. So kindly I would like to request for help. It would be lot easier by showing an example. Thanks!
Here is my code..
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()
(Sorry For Bad English)