Log in

View Full Version : whats up with this?


pdottz
13th February 2005, 19:59
I've been trying to clean up the lines in video capping, I use TomsMoComp and it does an awesome job of deinterlacing.........


this is the settings I use in my script...


LoadPlugin("C:\PROGRA~1\GORDIA~1\SangNom.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\TomsMoComp.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\undot.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\FluxSmooth.dll")
AVISource("D:\captures\maincap\eene.avi")
ConvertToYV12()
TomsMoComp(1,5,1)
SangNom(1,48)
LanczosResize(512,384)
Undot()
FluxSmooth(7,7)
ConvertToRGB()


here's the problem I get ...sangnom doesnt seem to make a difference.
notice the lines on the floor..

http://members.cox.net/pdottz/msdup.png

krieger2005
14th February 2005, 12:48
In general, my opinion is, that in such cases KernelDeInt make the best job. But sometimes it makes also failure. For this i make "SecDeInt", a script which i posted here. At home i have an updated version of this, which deliver even better results. I will make an update today at the evening...

But in gerneal i would not use "TomsMoComp" and Sangnom together. So try "KernelDeInt" or "LeafKernelDeInt" (i gues i wrote the name right, because i use still Leaf's old dll)

Leak
14th February 2005, 16:49
Originally posted by krieger2005
"LeafKernelDeInt" (i gues i wrote the name right, because i use still Leaf's old dll)

NOOOOOOOOOOOOOOO~!

:eek: :p :D

np: Aesop Rock - Kill The Messenger (Bazooka Tooth (Headphone Science Version))

scharfis_brain
14th February 2005, 16:55
wtf....

ConvertToYV12()
TomsMoComp(1,5,1)
SangNom(1,48)

mistakes:
- converttoyv12 used BEFORE the deinterlacing. not a good idea.
- converttoyv12 has to be used with interlaced=true, if processing with interlaced contents
- sangnom after tomsmocomp?!?
decide to use ONE of both, but never use them together.