Wilbert
21st August 2005, 13:58
I'd like some help in understanding the behaviour of DoubleWeave and SeparateFields.
Consider the following script:
b = blankclip(width=720, height=288, color=$000000)
w = blankclip(width=720, height=288, color=$ffffff)
Interleave(b,w).AssumeFieldBased.Weave
all frames are the same. First line is white, second line black, third line white, etc ...
Next script:
b = blankclip(width=720, height=288, color=$000000)
w = blankclip(width=720, height=288, color=$ffffff)
Interleave(b,w).AssumeFieldBased.Weave
DoubleWeave
all frames are the same. First line is white, second line black, third line white, etc ... The number of frames is doubled though.
Ok, it all makes sense up to here. Next script:
b = blankclip(width=720, height=288, color=$000000)
w = blankclip(width=720, height=288, color=$ffffff)
Interleave(b,w).AssumeFieldBased.Weave
DoubleWeave
SeparateFields
Ok, now I'm a bit confused. I would expect a black frame, followed by a white frame, followed by a black frame, etc ... But instead i get the following: black, white, white, black, black, etc ... How can that be, i thought that BFF or TFF is a property of the clip itself, not a frame property? (If it would be a frame property it would make sense i guess, as a result of DoubleWeave.)
Consider the following script:
b = blankclip(width=720, height=288, color=$000000)
w = blankclip(width=720, height=288, color=$ffffff)
Interleave(b,w).AssumeFieldBased.Weave
all frames are the same. First line is white, second line black, third line white, etc ...
Next script:
b = blankclip(width=720, height=288, color=$000000)
w = blankclip(width=720, height=288, color=$ffffff)
Interleave(b,w).AssumeFieldBased.Weave
DoubleWeave
all frames are the same. First line is white, second line black, third line white, etc ... The number of frames is doubled though.
Ok, it all makes sense up to here. Next script:
b = blankclip(width=720, height=288, color=$000000)
w = blankclip(width=720, height=288, color=$ffffff)
Interleave(b,w).AssumeFieldBased.Weave
DoubleWeave
SeparateFields
Ok, now I'm a bit confused. I would expect a black frame, followed by a white frame, followed by a black frame, etc ... But instead i get the following: black, white, white, black, black, etc ... How can that be, i thought that BFF or TFF is a property of the clip itself, not a frame property? (If it would be a frame property it would make sense i guess, as a result of DoubleWeave.)