Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Lost Control over VLC
#8
You have a problem with the design of your program. tkinter.mainloop() blocks other code from running. You also have a loop that looks for key presses that blocks other code from running. Somehow you need to get these to work together.

I think I would move this loop:
       Ended = 6#set arbitrary value
       current_state = media_player.get_state()
       while current_state != Ended:
            ...
To a function that I would call periodically using root.after(milliseconds, func_to_call). Another idea is use event binding to direct key presses to some function. You are already doing this with some key presses, but not all. And there is always multi-threading. Using multi-threading you could set up a keyboard listener that runs in one thread and have tkinter run in another thread. Getting the two threads to work together can be tricky.
Reply


Messages In This Thread
Lost Control over VLC - by jrockow - Jul-18-2023, 02:22 PM
RE: Lost Control over VLC - by deanhystad - Jul-18-2023, 03:20 PM
RE: Lost Control over VLC - by jrockow - Jul-18-2023, 05:06 PM
RE: Lost Control over VLC - by deanhystad - Jul-18-2023, 05:07 PM
RE: Lost Control over VLC - by jrockow - Jul-18-2023, 05:16 PM
RE: Lost Control over VLC - by jrockow - Jul-18-2023, 05:44 PM
RE: Lost Control over VLC - by deanhystad - Jul-18-2023, 05:44 PM
RE: Lost Control over VLC - by deanhystad - Jul-18-2023, 05:53 PM
RE: Lost Control over VLC - by jrockow - Jul-18-2023, 06:04 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Lost Modules standenman 2 876 Jun-22-2023, 12:18 PM
Last Post: standenman
  Lost Module standenman 10 3,125 Oct-30-2021, 05:11 PM
Last Post: deanhystad
  XML Editing formatting lost ateestructural 2 2,023 Apr-08-2021, 04:41 AM
Last Post: ndc85430
  List structure lost when multiplying Protonn 2 2,401 Apr-23-2020, 04:16 AM
Last Post: buran
  lost dictionary jjpy 1 2,002 Jul-10-2019, 12:19 PM
Last Post: scidam
  variable gets lost Jordy 10 9,535 Oct-10-2016, 08:08 PM
Last Post: Yoriz

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020