VideoHelp Forum




+ Reply to Thread
Results 1 to 4 of 4
  1. Using CCE SP 2.5 to convert some NTSC DV-2 to MPEG-2. I can load and convert the avi directly thorough CCE no problem.

    Installed AviSynth 2.5.6 and am trying to use the Doom9 tutorial:
    http://www.doom9.org/index.html?/dv/guide.html

    The avs file is as follows:

    AviSource("C:\MyDVFile.avi")
    ReInterpolate411()
    SeparateFields()
    odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
    evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
    Interleave(evn,odd)
    Weave()
    DoubleWeave.SelectOdd()

    When the avs file was loaded CCE it thought there were just 240 frames and gave "checksum errors". I then did a little searching and found that ReInterpolate411 was an additional filter, which I downloaded and unzipped into my AviSynth plugins folder.

    Now when I try open the avs file in CCE, CCE just closes.

    I am a complete newbiew when it comes to AviSynth, so I may be missing something startlingly obvious, so any ideas would be most appreciated.

    Many thanks in advance

    Paul.
    Quote Quote  
  2. Member Paul_G's Avatar
    Join Date
    Sep 2002
    Location
    United Kingdom
    Search Comp PM
    Add ConvertToYUY2() and AudioDub(BlankClip()) at end of script,

    CCE closes/crashes due to a bug with .avs files and AMD.

    AviSource("C:\MyDVFile.avi")
    ReInterpolate411()
    SeparateFields()
    odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
    evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
    Interleave(evn,odd)
    Weave()
    DoubleWeave.SelectOdd()
    AudioDub(BlankClip())
    ConvertToYUY2()
    Quote Quote  
  3. Member
    Join Date
    Apr 2002
    Location
    Oskeeweewee Ontario
    Search Comp PM
    Actually, it was a bug in that version...
    You either had to serve it audio, or at least serve "fake" audio...
    Quote Quote  
  4. And test the script in VDubMod before sending it to CCE. If something's wrong with the script, at least VDubMod will give you an error message that might help to pinpoint the problem. But your current problem will most likely be fixed with the AudioDub line.

    I prefer this method of filtering interlaced sources:

    LeakKernelBob(Order=1)#if TFF, Order=0 if BFF
    Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
    SeparateFields()
    SelectEvery(4,0,3)#if TFF, SelectEvery(4,1,2) if BFF
    Weave()
    ConvertToYUY2(Interlaced=True)

    You can get LeakKernelDeint here:

    http://www.avisynth.org/warpenterprises/

    You'll have to Load the .dll before using it. And if it's interlaced, don't forget the "Interlaced=True" in ConvertToYUY2
    Quote Quote  



Similar Threads

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