Ошибка такова:
Возникло исключение: AttributeError
'MP3Player' object has no attribute 'sound'
File "C:\Users\Никита\Documents\lessons.py", line 81, in update_timeline
pos = self.sound.get_pos() / 1000.0
^^^^^^^^^^
File "C:\Users\Никита\Documents\lessons.py", line 91, in
mp3player.update_timeline()
AttributeError: 'MP3Player' object has no attribute 'sound'
Вот код в диапазоне от 80 до 92 строк
def update_timeline(self):
# Get current playback position
pos = self.sound.get_pos() / 1000.0 # <-- Вот тут проблема
# Update timeline position
self.timeline.set(pos)
# Schedule the next update
self.timeline.after(100, self.update_timeline)
root = tk.Tk()
mp3player = MP3Player(root)
mp3player.update_timeline() #<-- И тут
root.mainloop()
Делаю мп3 плеер но вот вышла проблема помогите пожалуйста.