RidgeShark
6th December 2008, 22:27
So I've searched all over the doom9 message boards and found a very useful script for cleaning up some ugly VHS footage I have. Here's a sample of that footage - http://www.megaupload.com/?d=NSVVJ4H1
And here's the script I've been using -
AviSource("C:\Source")
ConverttoYV12()
source=last
backward_vec2 = MVAnalyse(isb = true, delta = 2, pel = 2, overlap=4, sharp=1,
idx = 1,dct=1)
backward_vec1 = MVAnalyse(isb = true, delta = 1, pel = 2, overlap=4, sharp=1,
idx = 1,dct=1)
forward_vec1 = MVAnalyse(isb = false, delta = 1, pel = 2, overlap=4, sharp=1,
idx = 1,dct=1)
forward_vec2 = MVAnalyse(isb = false, delta = 2, pel = 2, overlap=4, sharp=1,
idx = 1,dct=1)
MVDegrain2
(source,backward_vec1,forward_vec1,backward_vec2,forward_vec2,thSAD=100,idx=2)
I'm posting this message because I am very much an amateur at using Avisynth. I don't know if there are better techniques out there that could help with this particular VHS footage. For instance, although this script goes a long way towards cleaning up the footage, I'm still left with slight, strange horizontal lines in the video. Also, I'd like to convert the footage to 23.976 progressive fps if possible. After doing the cleanup, I tried using this script -
Telecide()
Decimate()
But it has problems and still shows interlacing in many frames. I know the source is bad, but I still hope it's possible to accurately IVTC the footage.
Any help is very much appreciated.
And here's the script I've been using -
AviSource("C:\Source")
ConverttoYV12()
source=last
backward_vec2 = MVAnalyse(isb = true, delta = 2, pel = 2, overlap=4, sharp=1,
idx = 1,dct=1)
backward_vec1 = MVAnalyse(isb = true, delta = 1, pel = 2, overlap=4, sharp=1,
idx = 1,dct=1)
forward_vec1 = MVAnalyse(isb = false, delta = 1, pel = 2, overlap=4, sharp=1,
idx = 1,dct=1)
forward_vec2 = MVAnalyse(isb = false, delta = 2, pel = 2, overlap=4, sharp=1,
idx = 1,dct=1)
MVDegrain2
(source,backward_vec1,forward_vec1,backward_vec2,forward_vec2,thSAD=100,idx=2)
I'm posting this message because I am very much an amateur at using Avisynth. I don't know if there are better techniques out there that could help with this particular VHS footage. For instance, although this script goes a long way towards cleaning up the footage, I'm still left with slight, strange horizontal lines in the video. Also, I'd like to convert the footage to 23.976 progressive fps if possible. After doing the cleanup, I tried using this script -
Telecide()
Decimate()
But it has problems and still shows interlacing in many frames. I know the source is bad, but I still hope it's possible to accurately IVTC the footage.
Any help is very much appreciated.