I want to make Queue Management application using Raspberry pi. I want to design my window using tkinter. On that window I want some portion will show the token no and counter no and other portion will show videos. How could i embed video on my window. Other functions I could manage easily but no idea about video. Please help me how could i embed video in my window.
Related
How to give interface to the voice assistant. When you start the program it opens one window there it run the voice assistant program .it shows image when voice recognising.when you close the window the program will should also stop .
the whole program i done in python.so i tried using tkinter.when i create window as function and call it in main function the window only show but the voice assistant program not start working.
We are now working on a thesis based on drowsiness detection within a car. Our code is on a while loop and every time it detects up to 5 or more seconds to be driver is drowsy, the GUI must show up to alert the user that the car is slowly breaking. My problem is while the opencv webcam is runnning (for the drowsiness detection), the tkinter GUI won't show up. Is there any way to like overlap the tkinter window from the webcam frame running in the background?
I am making a screen recorder which captures the screen and simultaneously also records the audio from microphone(input) with the help of a python script.
I am using Pillow and opencv library to record screen and using pyaudio library to record audio.
I have created a Gui using tkinter for this screen recorder(shown in image below).
So to start screen and audio recording i used buttons to start and stop different functions of scripts.
Now the problem is that duration of video file(screen recording) and the audio file(using pyaudio) is different.
ex. if user click on screen rec button and after 20-50 sec later click on voice rec button or vice-verse.
The time duration of both the file is different and can't be merge the audio and video file properly.
How can I overcome this situation?
I am new to Python and I am stuck with Tkinter. I have a video running in the background, and I need a label to pop up which contains dynamically changing content. I tried it with tkinter and EasyGUI. The contents are getting printed, but it causes my video to pause. I had to close the pop-up each time, for the video to keep running. I guess the tkinter thread is blocking the video playing thread.
I want to build an app on my raspberry pi using Python that uses a curses-style display over part of the screen and keeping the terminal visible (whilst printing scrolling status messages in it) over the rest of the screen. I also want to be able to take user input from the terminal prompt. Is this possible and how would I go about implementing this?