I created a very simple, short 1920x1080 PAR 1.00 clip that has the odd lines red and the even lines black.
You can put this on the Vegas timeline and experiment will all sorts of things: project settings; render settings; changing the clip's field order; applying deinterlace fX at the media, event, or track level; re-sizing; preview quality, and probably a few more I haven't thought of.
You should be able to look at the rendered output and see what happens to those original black and red lines, and whether the resulting output is what you expected.
This certainly doesn't provide the only tool one needs to figure out all these interlace questions, but it might prove useful.
Here's the file:
Blank Clip with Alternating Fields (HuffYUV).avi
I set the field order to TFF (upper field first).
[edit]
Here's the AVISynth script I used to create this clip. You can put this in Notepad, save as a text file with the extension AVS, open it in Virtualdub, and then create your own AVI file, using whatever compression scheme you might like.
You can put this on the Vegas timeline and experiment will all sorts of things: project settings; render settings; changing the clip's field order; applying deinterlace fX at the media, event, or track level; re-sizing; preview quality, and probably a few more I haven't thought of.
You should be able to look at the rendered output and see what happens to those original black and red lines, and whether the resulting output is what you expected.
This certainly doesn't provide the only tool one needs to figure out all these interlace questions, but it might prove useful.
Here's the file:
Blank Clip with Alternating Fields (HuffYUV).avi
I set the field order to TFF (upper field first).
[edit]
Here's the AVISynth script I used to create this clip. You can put this in Notepad, save as a text file with the extension AVS, open it in Virtualdub, and then create your own AVI file, using whatever compression scheme you might like.
#Create alternating black/red clip
odd= BlankClip(length=10, width=1920, height=540, fps=29.97, color=$000000)
even=BlankClip(length=10, width=1920, height=540, fps=29.97, color=$A52A2A)
interleave(odd,even)
assumefieldbased()
weave()
assumetff()
killaudio()