Log in

View Full Version : Can only capture at 720x240 59.94fps, need help converting to 720x480 29.97 fps


kempodragon
29th May 2006, 15:15
Recently I upgraded the capture drivers on my Radeon 9800. When I tried to capture in VirtualDub, I found I could only capture at 720x240 59.94 fps. Stepping through my test capture, you can clearly see the video shifting up and down, confirming that each field is captured in a separate frame. In other words, it's just like a SeparateFields was done to the capture.

I've done a search and come up with this basic script:

odd = SelectOdd(last)
even = SelectEven(last)
Interleave(odd,even)

Everytime I try this, it still remains at 720x240 59.94 fps. Could someone please show what I'm missing? I need to interleave this so I can use Decomb.

Guest
29th May 2006, 15:33
AssumeFieldBased()
AssumeTFF() # AssumeBFF() for BFF
Weave()

kempodragon
29th May 2006, 17:16
Thanks!! Worked like a charm.