View Single Post
  #1  
Old 09-22-2016, 12:12 PM
tokola tokola is offline
Member
 
Join Date: Nov 2012
Posts: 67
Unhappy Video function setTime() is hit & miss

Hi all,
I am using the video set/stopTime functions to play clips of a long video, at different points in my application. However, the playback jumps to a point at the beginning of the video once I call setTime(). This odd behavior appears totally random and have found no pattern regarding its occurrence. Weirdly enough this point is always the same, around the 12th second of the 5-min video (mp4 175MB). Due to the size I cannot upload the video. My code is very simple and the values I pass (start/stop) are always correct:

Code:
self.video.setTime(start)
self.video.stoptime(end)
self.video.play()
I am wondering if file size and/or format have anything to do with the problem. Is this a Vizard bug that someone else has come across? It makes the function unusable and if I don't resolve this, I will need to break down the video, which is such an inconvenience.

Thanks!
Reply With Quote