Example for set size #19
-
Hello, I love your package, however I am having some trouble implementing the .set_size() method in a working Tkinter mainloop, so if you could be so kind as to provide a minimal example of manual video size setting? The problem is when I embed the video in the Tkinter window it only shows a corner of the video in a very small box. I manually set the size using this code:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello @mvolar, So what you probably want is
If this solves your problem, make sure to mark this as the answer; if you have any further questions feel free to ask |
Beta Was this translation helpful? Give feedback.
Hello @mvolar,
set_size
sets the video size, not the window or the frame.So what you probably want is
root.geometry("500x500)
if you want to specify the position then you can useroot.geometry('wxh+x+y')
If this solves your problem, make sure to mark this as the answer; if you have any further questions feel free to ask