Files

15 lines
325 B
Python
Raw Permalink Normal View History

2025-10-22 19:05:25 +02:00
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()