Forum Discussion

jsj123's avatar
jsj123
Visitor
16 years ago

video offset

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

3 Replies

  • We do it as follows

    videoClip.PlayStart = position

    screen = CreateObject("roVideoScreen")
    screen.SetMessagePort(port)
    screen.SetPositionNotificationPeriod(5)
    screen.SetContent(videoClip)
  • renojim's avatar
    renojim
    Community Streaming Expert
    I do what EngoTom does, and yes it's in seconds.

    -JT