View Single Post
  #8  
Old 11-12-2007, 09:54 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
I noticed the same problem here. Even the frame time is never reset. I believe this is a bug in Microsofts DirectShow filter. As a workaround you can use the mod operator to get the actual frame number.
Code:
frame = video.getFrame() % video.getFrameCount()
Reply With Quote