18 lines
300 B
Python
18 lines
300 B
Python
import time
|
|
from player import Player
|
|
|
|
video_path = "/home/wancat/mind-blowing.mp4"
|
|
|
|
def main():
|
|
player = Player(video_path)
|
|
while True:
|
|
player.play()
|
|
while player.get_time() < 10000:
|
|
time.sleep(0.1)
|
|
player.reset()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|