VideoHelp Forum




+ Reply to Thread
Results 1 to 13 of 13
  1. Hi,

    I like to de interlace this dvd and change frame rate to 24fps and improve picture quality for better viewing.

    Can anyone help with a script on Avisynth please. I would kindly appreciate any suggestion.

    https://easyupload.io/d4mjce
    Quote Quote  
  2. Member
    Join Date
    Mar 2008
    Location
    United States
    Search Comp PM
    Here's an attempt using removedirt, bwdif and mcdegrainsharp.
    The source is not really interlaced, but it benefits from something particulary because of the subtitles.
    Image Attached Files
    Quote Quote  
  3. Member
    Join Date
    May 2005
    Location
    Australia-PAL Land
    Search Comp PM
    What code did you use there, Dave?
    Quote Quote  
  4. Originally Posted by davexnet View Post
    Here's an attempt using removedirt, bwdif and mcdegrainsharp.
    The source is not really interlaced, but it benefits from something particulary because of the subtitles.
    Thank you. Can i ask for the script so i can test it on full DVD in Avisnth please. Also can i crop the borders and still maintain the correct aspect ratio. I tried on Avisynth but my skills within avisynth isn't great.
    Quote Quote  
  5. The video is not interlaced.

    Deinterlacing would create a mess, and even using QTGMC as a noise reducer won't really give you what you want.

    You need to use one of the film restoration scripts posted over at doom9.org by VideoFred. Here is a link to his original scripts:

    The power of Avisynth restoring old 8mm films


    I have posted my own version of his script in some of those same threads. Here is a video of the before/after from Fred's original script. Later versions do an even better job:

    Film Restoration Example

    My contribution was to add better dirt removal. The original example above didn't remove much dirt. Here is a before/after example which clearly shows how much dirt can be removed:

    Film Restoration- Before After
    Quote Quote  
  6. It seems to be a 1.66:1 movie rather than 16:9 (or it was badly cropped/resized), so some side borders will remain for 16:9. It also seems to have framerate conversion and deinterlacing artefacts ....
    Maybe try something like this:
    Code:
    LWLibavVideoSource("VTS_01_1.VOB")
    Crop(8, 56, -0, -64)
    santiag() #removes the residual combing artefacts
    spotless() #removes the scratches
    temporaldegrain2() #or use a simpler (faster) denoiser
    spline36resize(1200,720) #square pixels
    addborders(40,0,40,0) #pad to 1280x720
    assumefps(24) #slowdown to 24fps if really needed
    prefetch(8)
    Image Attached Files
    Last edited by Sharc; 17th Dec 2024 at 14:18.
    Quote Quote  
  7. Originally Posted by Sharc View Post
    It seems to be a 1.66:1 movie rather than 16:9 (or it was badly cropped/resized), so some side borders will remain for 16:9. It also seems to have framerate conversion artefacts ....
    Maybe try something like this:
    [/CODE]
    Thank you Sharc, that look soo much better.
    Quote Quote  
  8. side note: you might also want to address the chroma shift.
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  9. Originally Posted by Selur View Post
    side note: you might also want to address the chroma shift.
    Something like this you mean?
    Code:
    LWLibavVideoSource("VTS_01_1.VOB") #assuming 601 source
    colormatrix(mode="Rec.601->Rec.709",clamp=0) #change the matrix for SD->HD upscale
    Crop(8, 56, -0, -64)
    santiag() #removes the residual combing artefacts
    spotless() #removes the scratches
    temporaldegrain2() #or use a simpler (faster) denoiser
    spline36resize(1200,720) #square pixels
    addborders(40,0,40,0) #pad to 1280x720
    assumefps(24) #slowdown to 24fps if really needed
    prefetch(8)
    Image Attached Files
    Quote Quote  
  10. No, looking at the red areas, i.e. the red lamps the chroma seemed to be shifted.
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  11. Originally Posted by Selur View Post
    side note: you might also want to address the chroma shift.
    Thanks for the heads up, I managed to fix that now with ChromaShift. much appreciated.
    Quote Quote  
  12. Another proposal you may try is to sharpen the chroma and then apply a minor shift only:
    Code:
    LWLibavVideoSource("VTS_01_1.VOB")
    colormatrix(mode="Rec.601->Rec.709",clamp=0)
    Crop(8, 56, -0, -64)
    santiag() #removes the residual combing artefacts
    spotless() #removes the scratches
    temporaldegrain2() #or use a simpler (faster) denoiser
    MergeChroma(last,Spline36Resize(width/2,height()).aWarpSharp2(depth=30).Spline36Resize(width(),height()))
    chromashiftSP(1,1)
    spline36resize(1200,720) #square pixels
    addborders(40,0,40,0) #pad to 1280x720
    assumefps(24) #slowdown to 24fps if really needed
    prefetch(8)
    Last edited by Sharc; 19th Dec 2024 at 04:34. Reason: Chroma sharpening modified
    Quote Quote  
  13. I'll give that a try. Thanks Sharc, much appreciated.
    Quote Quote  



Similar Threads

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