Start Video at specific Time [Python]

maenuk

New Member
Hi

I am looking for a python command which gets the progress of a video and starts it again at that certain time. Because I want to change the video playback speed during the video. When I change the video playback speed the video always starts over.

Does anyone have any ideas?

regards
maenuk

FYI (Code and Application):
I want to synchronize a playback video with a live video.

That's the code to change the video speed:
s = obs.obs_data_create()
obs.obs_data_set_int(s, "speed_percent", 300)
obs.obs_source_update(source, s)
 
Top