PDA

View Full Version : Problem With hybridFupp


nrahim
21st October 2006, 21:00
guys i`m trying use it.. and by following the instruction i have coppied and pasted this in my plugin folder...function HybridFupp(clip input, int width, int height, int "sharpness", int "sh1", int "sh2")

{
sharpness = Default(sharpness, 255)
sh1 = Default(sh1, 40)
sh2 = Default(sh2, 12)

resizemask = input.edgemask(3,8,255,255,"sobel",Y=3, V=1, U=1).inflate().Levels(0, 1.0, 24, 0, 255).\
BilinearResize(width, height).GreyScale().ConvertToRGB32()

MoMask = motionmask(input,thY1=30,thY2=30,thSD=15,y=3,u=1,v=1).fity2uv().inflate().Levels(0, 1.0, 24, 0, 255).BilinearResize(width,height).greyscale().converttorgb32()

soft = input.BilinearResize(width, height)

MEdgesharp = Mask(input.LanczosResize(width, height).unfilter(sh1,sh2).ConvertToRGB32(), resizemask)
MMotionblur = Mask(soft.unfilter(-10,-10).ConvertToRGB32(), MoMask)
Addedgedsharp = Layer(soft.fluxsmooth(3,5).ConvertToRGB32(), MEdgesharp, "add", sharpness)
AddMotionblur = Layer(Addedgedsharp , MMotionblur, "add", 255).converttoyv12()

return AddMotionblur
}

when i try to import my script this is the error i get http://img190.imageshack.us/img190/892/untitledcv1.jpg (http://imageshack.us)

here is my script LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\undot.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\masktools.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\unfilter.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\fluxsmooth.dll")
DGDecode_mpeg2source("C:\Veer Zara\DG Index\VTS_02_1.d2v",cpu=4,info=3)
ColorMatrix(hints=true)
edeintted = SeparateFields().SelectEven().EEDI2(field=-1)
tdeintted = TDeint(edeint=edeintted,order=-1)
tfm(clip2=tdeintted).tdecimate(hybrid=3)
crop( 2, 50, -2, -50)

TweakColor(sat=1.3, Bright=20)
hybridFupp(640,272)
addBorders(16,128,16,128)




PLZ HELP

Alain2
21st October 2006, 23:21
This doesn't look like the original hybridfupp function, or maybe it's a very early version..

Anyway, your problem is stated in the avisynth error msg : you need the fluxsmooth function (that is used with the hybridfupp function). Look for the the latest hybridfupp plugin (0.92b, easy to find with a search on "hybridfupp"), it's packaged with all the required plugins. The fluxsmooth.dll you are loading is probably the latest version of this filter, which does not contain a fluxsmooth function anymore, replaced with the new fluxsmoothT and fluxsmoothST functions.

nrahim
21st October 2006, 23:23
i have Fluxsmooth.. bwt the function is given here http://forum.doom9.org/showthread.php?p=443561#post443561./....

foxyshadis
21st October 2006, 23:34
You're using the old thread, not the newer one: http://forum.doom9.org/showthread.php?p=630521

Like Alain2 said, Fluxsmooth the fuction no longer exists, it's now two differently named functions.

nrahim
22nd October 2006, 18:31
oh alright problem solved case closed!