Update Video2Crops.py

This commit is contained in:
frarol96 2023-09-30 11:37:14 +00:00
parent e9f20d040e
commit 1dc23ffadd

View File

@ -10,8 +10,8 @@ import webbrowser
import screeninfo import screeninfo
# Constants # Constants
v2cversion1 = 0 v2cversion1 = 1
v2cversion2 = 1 v2cversion2 = 0
v2cversion3 = 0 v2cversion3 = 0
v2cversion = f"{v2cversion1}.{v2cversion2}.{v2cversion3}" v2cversion = f"{v2cversion1}.{v2cversion2}.{v2cversion3}"
frame_step = 100 frame_step = 100
@ -374,4 +374,4 @@ remove_file_button.pack(padx=20, pady=10)
process_files_button = tk.Button(root, text="Process Files", command=process_files) process_files_button = tk.Button(root, text="Process Files", command=process_files)
process_files_button.pack(padx=20, pady=10) process_files_button.pack(padx=20, pady=10)
root.mainloop() root.mainloop()