View Full Version : How to convert 30p to 30i
ADLANCAS
20th January 2007, 23:21
I have a video progressive video fps=29.97 NTSC that I´d like to convert to interlaced fps=29.97, but I´m not sure if the script that I use is right.
AssumeTFF() # or AssumeBFF() for BFF output
Tdeint(mode=1)
separatefields().selectevery(4,0,3).weave()
Could be done in that way ? or what?
wonkey_monkey
21st January 2007, 00:04
You won't achieve much by bobbing progressive footage - your script will effectively do nothing to your video.
If you want to make truly interlaced video from progressive video, you'll need to mocomp to invent new frames.
David
actionman133
21st January 2007, 01:55
To convert 30p to 30i:
Import ("MVBob.avs")
MVConv (60, 1) # or MVConv (60000, 1001) if its 29.97
AssumeTFF ()
SeparateFields ()
SelectEvery (4, 0, 3)
Weave ()
ADLANCAS
21st January 2007, 03:13
I´ll give a try, thanks.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.