mp3dom
9th January 2006, 21:15
Hi,
I have an image sequences at 720x288 (each image is progressive) and the full sequence is at "50fps" (just to clarify... is "similar" to make a sequence in VDub with an AVS with a SeparateFields on a PAL video) so frame 0 is the "top field", frame 1 is bottom, 2 is top, 3 is bottom and so on.
I need to load all the image sequence into an interlaced video (the reverse process) and I have used this script (similar):
ImageSource(...)
Top=SelectEvery(4,0,2)
Bottom=SelectEvery(4,1,3)
AssumeTFF()
Interleave(Top,Bottom)
Weave()
AssumeFPS(50) # I need this for some encoders
And seems to work but I would like to know if this is the correct method or if there's a better one.
Thanks!
I have an image sequences at 720x288 (each image is progressive) and the full sequence is at "50fps" (just to clarify... is "similar" to make a sequence in VDub with an AVS with a SeparateFields on a PAL video) so frame 0 is the "top field", frame 1 is bottom, 2 is top, 3 is bottom and so on.
I need to load all the image sequence into an interlaced video (the reverse process) and I have used this script (similar):
ImageSource(...)
Top=SelectEvery(4,0,2)
Bottom=SelectEvery(4,1,3)
AssumeTFF()
Interleave(Top,Bottom)
Weave()
AssumeFPS(50) # I need this for some encoders
And seems to work but I would like to know if this is the correct method or if there's a better one.
Thanks!