VideoHelp Forum
+ Reply to Thread
Results 1 to 13 of 13
Thread
  1. I have a cartoon DVD which is 23.976 but telecined to 29.97 using soft and hard telecine. Here's a sample:
    VTS_03_1.demuxed.m2v


    But I have issues. This is what happens when I use normal TIVTC/TDecimate, nothing else:
    Code:
    MPEG2Source("VTS_03_1.d2v")
    ConvertToYV12()
    TFM(D2V="VTS_03_1.d2v")
    TDecimate(Mode=1)



    Any ideas?
    Quote Quote  
  2. Originally Posted by Vitality View Post
    Any ideas?
    Proper deinterlace (or proper inverse telecine a.k.a. pulldown)
    Quote Quote  
  3. Originally Posted by pandy View Post
    Originally Posted by Vitality View Post
    Any ideas?
    Proper deinterlace (or proper inverse telecine a.k.a. pulldown)
    This is my FULL code:

    Code:
    MPEG2Source("%source_file%")
    TFM(D2V="%source_file%")
    TDecimate(Mode=1)
    Isn't that proper IVTC?
    Quote Quote  
  4. Member
    Join Date
    Mar 2008
    Location
    United States
    Search Comp PM
    Perhaps this:

    LoadPlugin("J:\StaxRip_1.1.9.0\Applications\DGMPGDec\DGDecode.dll")
    Load_Stdcall_plugin("J:\StaxRip_1.1.7.2\Applicatio ns\AviSynth plugins\Yadif\Yadif.dll")
    import("F:\Program Files\AviSynth\plugins\srestore.avs")
    mpeg2source("C:\Users\davex\Desktop\avs_test\VTS_0 3_1.demuxed.d2v")
    yadif(mode=1)
    srestore(frate=23.976)
    Quote Quote  
  5. The chroma on your video is messed up. The yadif+srestore method will probably take care of most of the blended chroma problems. Qtgmc+srestore will give less deinterlacing artifacts if you can stand the slow processing.

    Code:
    mpeg2source("VTS_0 3_1.demuxed.d2v")
    QTGMC(preset="fast", sharpness=0.7)
    SRestore(frate=23.976)
    Quote Quote  
  6. Very weird - chroma is telecined separately from luma... - perhaps separating chrominace and processing separately will help.
    Code:
    "fieldmatch=order=auto:combmatch=full, yadif=deint=interlaced, decimate"
    except chroma works nicely.
    Quote Quote  
  7. Originally Posted by jagabo View Post
    The chroma on your video is messed up. The yadif+srestore method will probably take care of most of the blended chroma problems. Qtgmc+srestore will give less deinterlacing artifacts if you can stand the slow processing.

    Code:
    mpeg2source("VTS_0 3_1.demuxed.d2v")
    QTGMC(preset="fast", sharpness=0.7)
    SRestore(frate=23.976)
    Where to get SRestore?
    Quote Quote  
  8. Originally Posted by Vitality View Post
    Where to get SRestore?
    http://avisynth.nl/index.php/Srestore
    Quote Quote  
  9. Originally Posted by jagabo View Post
    Originally Posted by Vitality View Post
    Where to get SRestore?
    http://avisynth.nl/index.php/Srestore
    OK, but aren't I supposed to IVTC instead of QTGMC?
    Quote Quote  
  10. Originally Posted by Vitality View Post
    Originally Posted by jagabo View Post
    Originally Posted by Vitality View Post
    Where to get SRestore?
    http://avisynth.nl/index.php/Srestore
    OK, but aren't I supposed to IVTC instead of QTGMC?
    QTGMC().SRestore() is a type of inverse telecine. If you want faster processing you can use TMF() instead of QTGMC().

    Code:
    mpeg2source("VTS_0 3_1.demuxed.d2v")
    Interleave(TFM(field=0), TFM(field=1))
    SRestore(frate=23.976)
    Quote Quote  
  11. Originally Posted by jagabo View Post
    Originally Posted by Vitality View Post
    Originally Posted by jagabo View Post
    Originally Posted by Vitality View Post
    Where to get SRestore?
    http://avisynth.nl/index.php/Srestore
    OK, but aren't I supposed to IVTC instead of QTGMC?
    QTGMC().SRestore() is a type of inverse telecine. If you want faster processing you can use TMF() instead of QTGMC().

    Code:
    mpeg2source("VTS_0 3_1.demuxed.d2v")
    Interleave(TFM(field=0), TFM(field=1))
    SRestore(frate=23.976)
    It says that GScriptClip() is missing
    Quote Quote  
  12. Originally Posted by Vitality View Post
    It says that GScriptClip() is missing
    That is part of the GRunT package.

    http://avisynth.nl/index.php/GRunT

    SRestore lists several other required packages. Did you have those?

    http://avisynth.nl/index.php/Srestore#Required_Plugins
    Quote Quote  
  13. Video Restorer lordsmurf's Avatar
    Join Date
    Jun 2003
    Location
    dFAQ.us/lordsmurf
    Search Comp PM
    Originally Posted by pandy View Post
    Very weird - chroma is telecined separately from luma... - perhaps separating chrominace and processing separately will help.
    Code:
    "fieldmatch=order=auto:combmatch=full, yadif=deint=interlaced, decimate"
    except chroma works nicely.
    What does this code go to? It's orphaned.
    Want my help? Ask here! (not via PM!)
    FAQs: Best Blank DiscsBest TBCsBest VCRs for captureRestore VHS
    Quote Quote  



Similar Threads

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