This method does not work for me: instance.audio_output_enumerate_devices() Traceback (most recent call last): File "C:\Users\joba1\workspace\chordsplay\chordsplay.py", line 165, in main player = ChordsPlay.play.Play(gui, db) File "C:\Users\joba1\workspace\chordsplay\ChordsPlay\play.p...
Hi, I stumbled over the method instance.audio_filter_list_get() It has a promising filter, scaletempo, that might be just perfect for my program. I wrote it to play songs that I can play aong with my guitar, to practice chords. Being able to play the songs slower (without changing the pitch) would b...
Would also be interested in this. Currently I may do way more than required? def __init__(self, url): ... self.tk = Tk() ... self.url = url self.instance = vlc.Instance() self.player = self.instance.media_player_new() self.event_manager = self.player.event_manager() self.event_manager.event_attach(v...
I am also new to this stuff, but I think you misunderstand this module. It does not start the gui executable. You have to program the gui and connect a window handle of it with your player object. Look into example tkvlc.py class Player methods __init__ and OnOpen.
Hi, I want to code a music player that shows guitar chords of the currently playing song. It should run on linux and if possible also on windows. Since I just started learning python and like the gui coding with tkinter, I searched for a way to play music in python. Platform independent audio implem...