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
+ Reply to Thread
Results 1 to 13 of 13
-
-
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. -
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 -
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)
Last edited by Sharc; 17th Dec 2024 at 14:18.
-
side note: you might also want to address the chroma shift.
users currently on my ignore list: deadrats, Stears555, marcorocchini -
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)
-
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 -
-
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
Similar Threads
-
De-Interlacing DVD and changing 25FPS To 24FPS
By Akuma786 in forum RestorationReplies: 0Last Post: 16th Dec 2024, 18:18 -
De-Interlacing properly and changing 29.97FPS of DVD to 24FPS
By Akuma786 in forum RestorationReplies: 70Last Post: 6th Oct 2023, 08:10 -
Converting 25fps audio to 24fps audio without lowering voice pitch
By killerteengohan in forum AudioReplies: 12Last Post: 14th Apr 2021, 16:21 -
Dvd interlacing
By Johnnysh in forum DVD RippingReplies: 37Last Post: 6th Dec 2020, 14:34 -
Converting NTSC->PAL Interlaced DVD Back To NTSC 24FPS???
By SegaSonic91 in forum DVD RippingReplies: 7Last Post: 2nd Oct 2020, 23:55