VideoHelp Forum




+ Reply to Thread
Results 1 to 4 of 4
  1. Member
    Join Date
    Aug 2006
    Location
    United States
    Search Comp PM
    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
    Quote Quote  
  2. Member
    Join Date
    Aug 2006
    Location
    United States
    Search Comp PM
    btw, I am using this script with cce, and it does not look good with fast motion.

    LoadPlugin("C:\Program Files\AutoGK\DGMPGDec\DGDecode.dll")
    mpeg2source("d:\Game 1 Flyers at Canadians 4-24-08.d2v.bad")
    LanczosResize(720,480)
    ConvertToYUY2(Interlaced=True)


    Looking for help.
    Quote Quote  
  3. I am using this script with cce, and it does not look good with fast motion.
    Probably not with slow motion, either, or any kind of 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.
    Quote Quote  
  4. 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()
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!