View Single Post
Old 20th January 2005, 06:24   #3  |  Link
Macanudo
Registered User
 
Join Date: Jun 2002
Location: Texas
Posts: 59
tsp,

First of all thanks for the filter. I have been hoping someone would create a variable radius gaussian blur filter.

I am either applying it incorrectly or there is a bug, because when I use either of the following scripts my output is greyscale only.
Code:
LoadPlugin("C:\Program Files\AviSynth 2.5\Filters\variableblur.dll")
a=AviSource("C:\boats.avi")
b=a.VariableBlur(radY=6)
return b

or

LoadPlugin("C:\Program Files\AviSynth 2.5\Filters\variableblur.dll")
a=AviSource("C:\boats.avi")
b=a.VariableBlur(radY=6, RadC=6)
return b
I am using Avisynth 2.55.

Edit: I figured it out. I added ConverttoYV12() and it works great.


Thanks Again,
Macanudo

Last edited by Macanudo; 20th January 2005 at 07:46.
Macanudo is offline   Reply With Quote