I need to read pairs of frames with avisynth and process them.
eg
frame1 + frame2 => result1
frame2 + frame3 => result2
frame3 + frame4 => result3
I know the selecteven() and selectodd() commands but they give me frame1 and 2 then frame3 and 4.
There is no way of doing an "if()" to work out which step I'm on or pushing back a grabbed frame.
Any idea how to implement this?