VideoHelp Forum




+ Reply to Thread
Results 1 to 10 of 10
  1. Member
    Join Date
    May 2011
    Location
    Sweden
    Search PM
    Hi. I have a 45 minutes interlaced (most likely telecined) Full HD NTSC MPEG2 video that looks quite good except some heavy blocking when the light is changing fast. I tried using DGIndex to get a d2v file but it looks scrambled in Avisynth.

    So far I wrote this Avisynth script:

    Code:
    SetFilterMTMode("QTGMC", 2)
    LWLibavVideoSource("video.mkv")
    AssumeTFF()
    TFM()
    TDecimate()
    Deblock(quant=60)
    QTGMC(InputType=1, Preset="Medium", EzDenoise=3)
    Spline36Resize(960,540)
    Prefetch(threads=4)
    I used TFM/TDecimate, Deblock, QTGMC's noise reduction and I halved the resolution to reduce the blocking even more. Any way to improve this script? I want to get the best quality out of it to archive it instead of the original.
    Image Attached Files
    Last edited by elektro; 5th Aug 2021 at 19:20.
    Quote Quote  
  2. Originally Posted by elektro View Post
    I tried using DGIndex to get a d2v file but it looks scrambled in Avisynth.
    If you tried using DGIndex on the MKV, that would be the reason. If the source is a DVD, use it on a VOB. If the MKV is the source, demux first and use DGIndex on the M2V.
    Quote Quote  
  3. Member
    Join Date
    May 2011
    Location
    Sweden
    Search PM
    Originally Posted by manono View Post
    Originally Posted by elektro View Post
    I tried using DGIndex to get a d2v file but it looks scrambled in Avisynth.
    If you tried using DGIndex on the MKV, that would be the reason. If the source is a DVD, use it on a VOB. If the MKV is the source, demux first and use DGIndex on the M2V.
    OK, thanks. Now, how to improve that script?
    Quote Quote  
  4. Now, how to improve that script?
    The deblocking&co seem a bit strong to be applied on the whole clip. So splitting the script into sections with different filtering might be a good idea.
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  5. Member
    Join Date
    Mar 2008
    Location
    United States
    Search Comp PM
    Originally Posted by elektro View Post
    Originally Posted by manono View Post
    Originally Posted by elektro View Post
    I tried using DGIndex to get a d2v file but it looks scrambled in Avisynth.
    If you tried using DGIndex on the MKV, that would be the reason. If the source is a DVD, use it on a VOB. If the MKV is the source, demux first and use DGIndex on the M2V.
    OK, thanks. Now, how to improve that script?
    Are you talking about the heavy block noise (possibly CCD noise) towards the end of the video?
    Quote Quote  
  6. Member
    Join Date
    May 2011
    Location
    Sweden
    Search PM
    Originally Posted by davexnet View Post
    Are you talking about the heavy block noise (possibly CCD noise) towards the end of the video?
    Yes. How to make it less noticeable? I don't mind if it's more blurry.
    Last edited by elektro; 7th Aug 2021 at 16:39.
    Quote Quote  
  7. Folks please to not quote the complete post of others unless it is necessary, it really makes it unnecessary hard to read this thread,.. Thanks!
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  8. Member
    Join Date
    Mar 2008
    Location
    United States
    Search Comp PM
    Originally Posted by elektro View Post
    Originally Posted by davexnet View Post
    Are you talking about the heavy block noise (possibly CCD noise) towards the end of the video?
    Yes. How to make it less noticeable? I don't mind if it's more blurry.
    Try the old Temporaldegrain script which needs the old version of mvtools (with MVAnalyse) -
    it helps a little.
    Image Attached Files
    Quote Quote  
  9. Member
    Join Date
    May 2011
    Location
    Sweden
    Search PM
    Originally Posted by davexnet View Post
    Try the old Temporaldegrain script which needs the old version of mvtools (with MVAnalyse) -
    it helps a little.
    Thanks. I like the result. What settings did you use? Please post the whole AVS script.
    Last edited by elektro; 8th Aug 2021 at 19:16.
    Quote Quote  
  10. Member
    Join Date
    Mar 2008
    Location
    United States
    Search Comp PM
    Default setting
    Code:
    LoadPlugin("i:\plugins\mvtools1.dll")
    LoadPlugin("J:\appz38\MeGUI-2715-32\tools\dgindex\DGDecode.dll")
    import("i:\plugins\TemporalDegrain.avs")
    mpeg2source("C:\Users\davex\Desktop\avs_test\video.d2v")
    assumetff()
    tfm().tdecimate()
    spline36resize(width/2,height/2)
    temporaldegrain()
    Quote Quote  



Similar Threads

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