How do we start the video at a stated offset time in the video file? We tried setting the BookmarkPosition, PlayStart and StreamStartTimeOffset to 1000. None of them worked. Is it in seconds as the documentation states?
–Stephen
How do we start the video at a stated offset time in the video file? We tried setting the BookmarkPosition, PlayStart and StreamStartTimeOffset to 1000. None of them worked. Is it in seconds as the documentation states?
–Stephen
We do it as follows
videoClip.PlayStart = position
screen = CreateObject(“roVideoScreen”)
screen.SetMessagePort(port)
screen.SetPositionNotificationPeriod(5)
screen.SetContent(videoClip)
I do what EngoTom does, and yes it’s in seconds.
-JT
EngoTom’s example is correct and PlayStart is in seconds.
–Kevin