Initial commit

This commit is contained in:
Rich
2023-12-06 14:24:46 +00:00
commit edf0f5e06a
53 changed files with 3665 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
'''
This shows off each graphics api and their respective preview methods
'''
from pyvidplayer2 import Video, VideoTkinter, VideoPyglet, VideoPyQT
PATH = r"resources\trailer1.mp4"
Video(PATH).preview()
VideoTkinter(PATH).preview()
VideoPyglet(PATH).preview()
VideoPyQT(PATH).preview()