How to play a video at a user defined frame rate using python in tkinter?
Asked
Active
Viewed 176 times
0
-
2Depends, if you are using `[threading]` or `.after(...` and alltogether how fast you can read and display each frame. – stovfl Jun 13 '20 at 12:34
-
And how to render the frame on tkinter window alongside which user inputs the frame rate? – Sampada Jun 13 '20 at 15:11
-
If you can faster render than the users input rate, insert a delay, otherwise you are off. – stovfl Jun 13 '20 at 15:14
-
Does this answer your question? [Way to play video files in Tkinter?](https://stackoverflow.com/questions/7227162/way-to-play-video-files-in-tkinter) – 10 Rep Jun 13 '20 at 22:33