13 lines
288 B
Python
13 lines
288 B
Python
'''
|
|
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() |