MrVideo
30th December 2009, 09:34
While digging around the wiki manual pages, I came across:
doubleweave()
pulldown(0,3)
Why wouldn't that work? The thing I can see that would keep it from working is that how is the first frame found of the 2:3 pulldown sequence?
While looking at the entry for pulldown, the math doesn't make any sense. From the manual:
Pulldown(a,b) (with a < b) selects frames a, b, (a+b)+a, (a+b)+b, 2*(a+b)+a, 2*(a+b)+b, ...
With a=0 and b=3, the six formulas come out as:
a=0
b=3
(a+b)+a=(0+3)+0=3
(a+b)+b=(0+3)+3=6
2*(a+b)+a=2*(0+3)+0=6 [(2*3)+0]
2*(a+b)+b=2*(0+3)+3=9 [(2*3)+3]
That is nowhere near the 0, 3, 5, 8, 10, 13 ... that is shown in the manual.
doubleweave()
pulldown(0,3)
Why wouldn't that work? The thing I can see that would keep it from working is that how is the first frame found of the 2:3 pulldown sequence?
While looking at the entry for pulldown, the math doesn't make any sense. From the manual:
Pulldown(a,b) (with a < b) selects frames a, b, (a+b)+a, (a+b)+b, 2*(a+b)+a, 2*(a+b)+b, ...
With a=0 and b=3, the six formulas come out as:
a=0
b=3
(a+b)+a=(0+3)+0=3
(a+b)+b=(0+3)+3=6
2*(a+b)+a=2*(0+3)+0=6 [(2*3)+0]
2*(a+b)+b=2*(0+3)+3=9 [(2*3)+3]
That is nowhere near the 0, 3, 5, 8, 10, 13 ... that is shown in the manual.