Files
mfe9/pyvidplayer2/examples/playback_speed_demo.py
2023-12-06 14:24:46 +00:00

11 lines
190 B
Python

'''
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()