Log in

View Full Version : LSF gives Error while previewing AviSynth Script


mavinashbabu
20th September 2007, 14:22
Hi,

Me not that good at AviSynth scripts, but know what will do what and in the process of knowing how it will do i'm getting the below error while previewing my .avs script file while using LimitedSharpenFaster ()

below is .avs scrip



DGDecode_mpeg2source("F:\KRRISH_CCE-4-DS\VIDEO_TS\VTS_02_1.d2v",info=3)
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\fft3dfilter.dll")
import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpenFaster.avsi")
LoadPlugIn("C:\Program Files\AviSynth 2.5\plugins\RemoveGrainS.dll")
LoadPlugIn("C:\Program Files\AviSynth 2.5\plugins\RepairS.dll")
Import("c:\Program Files\AviSynth 2.5\Plugins\SeeSaw.avs")
LoadPlugIn("C:\Program Files\AviSynth 2.5\plugins\aWarpsharp.dll")
LoadPlugIn("C:\Program Files\AviSynth 2.5\plugins\SSETools.dll")
LoadPlugIn("C:\Program Files\AviSynth 2.5\plugins\RemoveGrainS.dll")
LoadPlugIn("C:\Program Files\AviSynth 2.5\plugins\RepairS.dll")

#ColorMatrix(hints=true,interlaced=true)
#Not doing anything because the source is progressive
crop( 0, 56, -2, -60)
#LimitedSharpenFaster(ss_x=1.5)
#seesaw(NRlimit=5, NRlimit2=5, Sstr=2.22, Szp=1, Slimit=50, Sdamplo=16, Spower=1, sootheT=95, SdampHi=39)
LimitedSharpenFaster(ss_x=2.5,ss_y=2.25,strength=30,smode=4)
#fft3dfilter(sigma=1.5,interlaced=false)
Lanczos4Resize(720,304) # Lanczos4 (Sharp)
#denoise



And here is the screenshot of the error message

http://maxupload.com/img/60BE5DEE.jpg


Please help.

Thanks

Didée
20th September 2007, 14:33
[hurdy-gurdy]

Dont use ancient versions. Use RemoveGrain v1.0 (http://home.arcor.de/kassandro/RemoveGrain/RemoveGrain.rar).

[/hurdy-gurdy] ;) .....

mavinashbabu
20th September 2007, 15:07
Thanks, It seems to solved the said problem in post #1, but giving a different error now :(

Sorry for asking too much help

below is the screen shot

http://maxupload.com/img/6082E53E.jpg

Didée
20th September 2007, 15:21
YV12 colorspace, Avisynth, and the "whether-mod4-is-required-or-not" riddle ...

Quick solutions:

EITHER:

- do not crop the right border by "-2" in your crop() line, but by "0" or "-4"


OR

replace
LimitedSharpenFaster(ss_x=2.5,ss_y=2.25,strength=30,smode=4)
Lanczos4Resize(720,304) # Lanczos4 (Sharp)

with LimitedSharpenFaster(ss_x=2.5,ss_y=2.25,strength=30,smode=4,dest_x=720,dest_y=304)


BTW, Smode=4 doesn't fit that well to ss factors >1.5 .

mavinashbabu
20th September 2007, 15:30
It worked.. Thanks very much for rescuing me here!!

It was great help