Would appreciate any feedback who has created their own custom video scrubber. I know there is a powerful, scrubber in the palette but way more than I need.
Wrestling all day with 2 issues.
-
Using a simple scrub bar to scrub the index value of my MovieFileIn TOP. Works fine whenever the index value is increasing (scrub forward) but only erratically if decreasing (scrub backwards). It works sometimes but often stutters or jumps values or simply sticks. I’ve tried using both Frames and Index.
Does any one know why this happens? Any solution? -
The default Play Mode of my MovieFileIn TOP is Sequential.
When I need to scrub I switch to ‘Specify Index’
I am using the following set of Python commands after a lot of trying different things. Does this seem correct? Occassionaly the video frame doesn’t seem to update properly even though the index value is correct and this is why I am using a cuepulse.pulse().
op(‘moviefilein1’).par.cuepoint=op(‘moviefilein1’).par.index
op(‘moviefilein1’).par.cuepulse.pulse() op(‘moviefilein1’).par.playmode=1
op(‘moviefilein1’).par.play=1