PDA

View Full Version : how get 50i from 50p-please correct the code


Terka
2nd January 2008, 09:58
how get 50i from 50p bottom field first?


avisource("50p.avi")
Separatefields() #get 100fps
SelectEvery(4,3,0) #for BFF; SelectEvery(4,0,3) for TFF
Weave()
AssumeBFF()


is this correct?

IanB
2nd January 2008, 12:14
avisource("50p.avi") # Implicit BFF [b,t],[b,t],[b,t],...
# AssumeTFF() # Explicit TFF [t,b],[t,b],[t,b],...
Separatefields() #get 100fps
SelectEvery(4,0,3)
Weave()

Terka
2nd January 2008, 12:34
thank you!
so for TFF just add:
AssumeTFF()

#SelectEvery(4,0,3) #this will be allways the same

R3Z
2nd January 2008, 12:40
thank you!
so for TFF just add:
AssumeTFF()

#SelectEvery(4,0,3) #this will be allways the same

You can always add Info() to the end of your script and it will give you the answer !

Terka
2nd January 2008, 16:17
i see!