Hello,
I am having a devil of a time writing avs scripts. What I want to do is downsize a hockey hdtv 1080i broadcast into 480i for creating a dvd with cce 2.7.
The problem is that I cannot get the encoder to encode in interlace. It turns it to progressive, which is not pretty on this material.
Please, if anyone can give an avs script to me to use, I would be very, very grateful.
Thanks,
Jason
+ Reply to Thread
Results 1 to 4 of 4
-
-
-
I am using this script with cce, and it does not look good with fast motion.
LoadPlugin("C:\Program Files\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\Path\To\LeakKernelDeint.dll")
mpeg2source("d:\Game 1 Flyers at Canadians 4-24-08.d2v.bad")
AssumeTFF()#if TFF
LeakKernelBob(Order=1)#if TFF, or use your favorite different bobber
LanczosResize(720,480)
AssumeTFF()#if TFF
SeparateFields()
SelectEvery(4,0,3)#if TFF
Weave()
ConvertToYUY2(Interlaced=True)
You can't just resize interlaced content without destroying the field structure. You should bob it first, then resize, and then reinterlace it. Your problem with CCE producing only progressive output is a different one. Make sure the Progressive Frame checkbox is unchecked. -
You may find a simpler script watchable and easier to understand:
mpeg2source("filename.d2v")
AssumeTFF() #if TFF
ConvertToYUY2(interlaced=true)
SeparateFields()
LanczosResize(720, 240)
Weave()
Similar Threads
-
avs script giving me fits
By willmoodom in forum Newbie / General discussionsReplies: 32Last Post: 30th Sep 2009, 03:43 -
How do I create an AVS script
By Sopt Finder in forum Newbie / General discussionsReplies: 4Last Post: 15th Jun 2009, 13:17 -
AVS script and Subtitle Workshop
By sambat in forum SubtitleReplies: 3Last Post: 19th Apr 2009, 10:20 -
This correct avs script for this source?
By alcOre in forum Newbie / General discussionsReplies: 2Last Post: 13th Feb 2009, 01:24 -
help with avs script (dv to mpeg2) Fading in/out
By ZiGGY909 in forum EditingReplies: 2Last Post: 14th Nov 2007, 14:12