15 lines
325 B
Python
15 lines
325 B
Python
|
|
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()
|