quick fix 2

This commit is contained in:
Bartłomiej Patyk
2025-10-22 19:05:25 +02:00
commit e5e64b6dc8
598 changed files with 300649 additions and 0 deletions

View File

@ -0,0 +1,14 @@
from tkinter import *
from . import VideoPlayer
class bvPlayer:
def __init__(self, file, **kwargs):
root = Tk()
player = VideoPlayer.VideoPlayer(root, file, **kwargs)
try:
player.play()
except KeyboardInterrupt:
player.kill()
root.mainloop()