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,10 @@
'''
This example shows how you can control the playback speed of videos
'''
from pyvidplayer2 import Video
v = Video(r"resources\trailer1.mp4")
v.set_speed(2) # twice as fast
v.preview()