Log in

View Full Version : Help me to filter it!


Agatte
2nd May 2006, 17:09
Hi,


i have been trying more and more times to use the filters in AVS file, but nothing done! No good results!


So this is the Raw-Sample file :

http://www.uploading.com/?get=H9RW557X



anybody can help me and to filter it?



this what i use now:

# PLUGINS
LoadPlugin("plugins\DeGrainMedian.dll")
LoadPlugin("plugins\FFT3DFilter.dll")
LoadPlugin("plugins\AWarpSharp.dll")
LoadPlugin("plugins\Deen.dll")
LoadPlugin("plugins\Decomb.dll")
LoadPlugin("plugins\DGDecode.dll")
LoadPlugin("plugins\MaskTools-v1.5.8\Masktools.dll")
LoadPlugin("plugins\mt_masktools.dll")
LoadPlugin("plugins\Temporalcleaner.dll")
LoadPlugin("plugins\RemoveDirt.dll")
LoadPlugin("plugins\RemoveDirtS.dll")
LoadPlugin("plugins\RepairS.dll")
LoadPlugin("plugins\RemovegrainS.dll")
LoadPlugin("plugins\TDeint\TDeint.dll")
LoadPlugin("plugins\TIVTC\TIvtc.dll")
LoadPlugin("plugins\bifrost.dll")
LoadPlugin("plugins\Msmooth.dll")
LoadCPlugin("plugins\SmartDecimate.dll")
Import("plugins\LimitedSharpenFaster.avsi")
#Import("FastLineDarken.avs")
Import("BlindDeHalo3.avs")
Import("DeHalo_alpha.avs")

# SOURCE
AviSource("Kiba 01 RAW.avi")

RemoveDirt(athreshold=40, mthreshold=90)
Bifrost()
SmartDecimate(tel=0.99999999999999)
Bifrost(interlaced=false)

FieldDeinterlace(full=false)
deen("a3d",4,6,8)
LimitedSharpenFaster()
#aWarpSharp()
#MSharpen(10,80,true,false,false)

Tweak(sat=1.1)

AssumeTFF()
Telecide(guide=1,post=2,vthresh=30)
Decimate()


Please Help Me!

Guest
2nd May 2006, 17:31
Trying and trying .. but nothing done! Please read and follow forum rules, specifically, rule 9: use a proper thread title. Thank you.

http://forum.doom9.org/forum-rules.htm

Agatte
4th May 2006, 08:02
Any help?

MOmonster
4th May 2006, 10:34
I canīt look at your sample, the connection is too slow, but your script look a bit strange. I mean want do you want to do?
You should load only the filters you also use in the script. Is your source really interlaced, or is it telecined? I canīt see any system in your script.

Edit:
I had a short look with vlc. There is no interlacing. So no fieldeinterlace, no telecide + decimate and no smartdecimate should be used. Some deblocking, denoising and deringing (dehalo) is needed. And after this you should use a good sharpen function a la Didee.

Edit2:LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\DeGrainMedian.dll") # DeGrainMedian 0.8 (http://bag.hotmail.ru/)
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\FFT3DFilter.dll") # FFT3DFilter 1.8.5 (http://bag.hotmail.ru/)
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\AWarpSharp.dll") # aWarpSharp Beta 1 (http://ziquash.chez-alice.fr/)
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\Deen.dll") # Deen Beta 2 (http://www.avisynth.org/warpenterprises/)
LoadPlugin("C:\dgmpgdec146\DGDecode.dll") # DGMPGDec 1.2.1 oder 1.4.6 (http://www.neuron2.net/dgmpgdec/dgmpgdec.html)
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\Masktools.dll") # Masktools 1.5.8 (http://manao4.free.fr/)
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\mt_masktools.dll") # MaskTools 2.0 Alpha 27 (http://manao4.free.fr/)
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\Temporalcleaner.dll") # TemporalCleaner Beta 2 (http://www.avisynth.org/warpenterprises/)
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\RepairS.dll") # RemoveGrain 1.0 pre (http://home.arcor.de/kassandro/RemoveGrain/RemoveGrain.rar)
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\RemovegrainS.dll") # RemoveGrain 1.0 pre (http://home.arcor.de/kassandro/RemoveGrain/RemoveGrain.rar)
Import("LimitedSharpenFaster.avs")
Import("FastLineDarken.avs")
Import("BlindDeHalo3.avs")
Import("DeHalo_alpha.avs")


# SOURCE
AviSource("Kiba 01 RAW.avi")

### deblocking ###
deblock() #or ffdshow deblocking or just better a deblocking function

### colourcorrection ###
#Tweak(Sat=1.2)

### against rainbow's ###
#FFT3DFilter(Sigma=0,Sigma3=15,plane=3,wintype=1)

### Denosing ###
FFT3DFilter(Sigma=6,plane=4,wintype=1)

### DeHalo ###
DeHalo_alpha(2.5,2.5,0.5).BlindDehalo3(PPmode=-1,PPlimit=4)

### Sharpen ###
FastLineDarken(strength=128,thinning=0)
aWarpSharp(depth=16,cm=1)
LimitedSharpenFaster()

Removegrain(1)
Itīs stolen from a german thread and I didnīt test it with your source, but itīs a point to start with.

Agatte
4th May 2006, 10:45
ok this is another link for the file:

http://www.savefile.com/files/4439401

I want you to help me to filter it.



Please!

Daodan
4th May 2006, 12:38
Actually, I found that hard to work with sources shouldn't be sharpened. You will lose the effect of the deringers especially. Maybe LSF with edgemode1. For anime my opinion is that temporal denoisers work very well, so TTempsmooth, maybe degrainmedian, etc.

Agatte
4th May 2006, 12:48
Ok thanks guys.

And Special Thanks for "MOmonster"..