View Full Version : AvsP script error!
ghjeong8408
22nd December 2014, 06:48
I'm trying to use Dehalo filter but I can't.
Similar error messages make me suffer when I try to use LimitedSharpen, Smoothlevel, and so on.
Please help me!
colours
22nd December 2014, 07:44
You're probably missing plugins or scripts. Check the Avisynth wiki (http://avisynth.nl/index.php/External_filters).
Also, use a third-party image host like imgur to host screenshots. All attachments here have to be manually approved, which is somewhat inefficient.
ghjeong8408
22nd December 2014, 08:01
Thank you for your advice!
However, I'm sure that I haven't deleted any files in the avisynth folder. Also, some filters like TemporalDenoise work! Are there any specific tips for this situation?
StainlessS
22nd December 2014, 10:16
You could always just say in text what the message was.
If it involves error 0x7e, then you are probably missing a c++ runtime dll.
In which case you could download this and see what other dll's the filter relies upon: http://www.dependencywalker.com/
[Is also installed with System Tools on the W2K and XP setup CD's (dont know about W7 or later)].
EDIT: SUPPORT\TOOLS\SupTools.msi on XP CD.
Groucho2004
22nd December 2014, 10:24
You could always just say in text what the message was.
If it involves error 0x7e, then you are probably missing a c++ runtime dll.
In which case you could download this and see what other dll's the filter relies upon: http://www.dependencywalker.com/
[Is also installed with System Tools on the W2K and XP setup CD's (dont know about W7 or later)].
Or he could simply use this (http://forum.doom9.org/showthread.php?t=170647) and post the logs. :)
StainlessS
22nd December 2014, 10:27
Or you could simply use that and post the logs :)
Yes of course.
ghjeong8408
22nd December 2014, 13:35
<<My script>>
LoadPlugin("C:\Program Files (x86)\MeGUI_2507_x86\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("D:\N_EVANGELION_01\VIDEO_TS\VTS_02_CHAPTER_02_1.d2v", cpu=4, info=3)
coloryuy2(levels="tv->pc")
crop(8, 0, -8, 0)
gradfun2db()
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\TemporalCleaner.dll")
TemporalCleaner(ythresh=3, cthresh=5)
_2dcleanyuy2()
fft3dfilter()
Spline36Resize(640,480) # Spline36 (Neutral)
warpsharp()
import("C:\Program Files (x86)\AviSynth 2.5\plugins\Dehalo_Alpha.avsi")
DeHalo_Alpha(rx=2.0, ry=2.0, darkstr=1.0, brightstr=1.0, lowsens=50, highsens=50, ss=1.5)
temporalcleaner(1,1)
temporalcleaner(1,1)
temporalcleaner(1,1)
And <<the error message>>
script error:there is no function named "Dehalo_Alpha"
(C:\Users\USER\Desktop\script.avs, line 13)
StainlessS
22nd December 2014, 13:42
MT2 version
http://avisynth.nl/index.php/DeHalo_alpha
Required Plugins
MaskTools2 2.0a48+
Repair - part of the RemoveGrain v1.0b package.
function DeHalo_alpha(clip clp, float "rx", float "ry", float "darkstr", float "brightstr", float "lowsens", float "highsens", float "ss")
{
rx = default( rx, 2.0 )
ry = default( ry, 2.0 )
darkstr = default( darkstr, 1.0 )
brightstr = default( brightstr, 1.0 )
lowsens = default( lowsens, 50 )
highsens = default( highsens, 50 )
ss = default( ss, 1.5 )
LOS = string(lowsens)
HIS = string(highsens/100.0)
DRK = string(darkstr)
BRT = string(brightstr)
ox = clp.width()
oy = clp.height()
uv = 1
uv2 = (uv==3) ? 3 : 2
halos = clp.bicubicresize(m4(ox/rx),m4(oy/ry)).bicubicresize(ox,oy,1,0)
are = mt_lutxy(clp.mt_expand(U=uv,V=uv),clp.mt_inpand(U=uv,V=uv),"x y -","x y -","x y -",U=uv,V=uv)
ugly = mt_lutxy(halos.mt_expand(U=uv,V=uv),halos.mt_inpand(U=uv,V=uv),"x y -","x y -","x y -",U=uv,V=uv)
so = mt_lutxy( ugly, are, "y x - y 0.001 + / 255 * "+LOS+" - y 256 + 512 / "+HIS+" + *" )
lets = mt_merge(halos,clp,so,U=uv,V=uv)
remove = (ss==1.0) ? clp.repair(lets,1,0)
\ : clp.lanczosresize(m4(ox*ss),m4(oy*ss))
\ .mt_logic(lets.mt_expand(U=uv,V=uv).bicubicresize(m4(ox*ss),m4(oy*ss)),"min",U=uv2,V=uv2)
\ .mt_logic(lets.mt_inpand(U=uv,V=uv).bicubicresize(m4(ox*ss),m4(oy*ss)),"max",U=uv2,V=uv2)
\ .lanczosresize(ox,oy)
them = mt_lutxy(clp,remove,"x y < x x y - "+DRK+" * - x x y - "+BRT+" * - ?",U=2,V=2)
return( them )
}
function m4(float x) {return(x<16?16:int(round(x/4.0)*4))}
EDIT:
Changelog
Changes 2006-01-31:
- Changed syntax to use MaskTools2
Changes 2005-11-15:
- Initial release
If using older version probably need Masktools v1.0
EDIT:
Both of these lines are un-necessary as they are in the AutoLoad Plugins directory.
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\TemporalCleaner.dll")
import("C:\Program Files (x86)\AviSynth 2.5\plugins\Dehalo_Alpha.avsi")
feisty2
22nd December 2014, 13:43
maybe just don't use file names with Asian characters
some programs could be ANSI encoded and couldn't handle things like this
StainlessS
22nd December 2014, 14:07
You try to load an avsi (which it really should be to autoload from plugins dir) but your file in plugins dir is actually an avs file.
EDIT: The image listing and text listing do not match.
Rename to avsi and forget the LoadPlugin and Import on both autoloaded items.
ghjeong8408
22nd December 2014, 14:19
I've downloaded the zip file and moved mt_masktools-26-x64.dll file to the avisynth_plugin folder.
Am I doing right?
StainlessS
22nd December 2014, 14:23
Only if using 64 bit Avisynth (a bad idea). You probably want the 32 bit version.
ghjeong8408
22nd December 2014, 14:29
I've replaced the x64 file with x86 one. Am I doing right?
If so, what can I do next?
Reel.Deel
22nd December 2014, 14:29
I've downloaded the zip file and moved mt_masktools-26-x64.dll file to the avisynth_plugin folder.
Am I doing right?
You're doing it right only if you're positive that you're using the 64-bit version of AviSynth+. If not (which is more than likely the case here) then download the appropriate version.
StainlessS
22nd December 2014, 14:32
Read the previous posts and edits. EDIT: Yes x86 probably what you want.
Make sure that you are using the recent version of Dehalo_Alpha and with an avsi extension (either download from wiki or copy/paste
from my earlier post).
Remove both the LoadPlugin and Import for the autoloaded items.
Then retry your script.
Make sure that the script you are posting is the one you are using otherwise it dont help much (ie jpg and text do not match).
ghjeong8408
22nd December 2014, 14:45
MT2 version
http://avisynth.nl/index.php/DeHalo_alpha
Required Plugins
MaskTools2 2.0a48+
Repair - part of the RemoveGrain v1.0b package.
function DeHalo_alpha(clip clp, float "rx", float "ry", float "darkstr", float "brightstr", float "lowsens", float "highsens", float "ss")
{
rx = default( rx, 2.0 )
ry = default( ry, 2.0 )
darkstr = default( darkstr, 1.0 )
brightstr = default( brightstr, 1.0 )
lowsens = default( lowsens, 50 )
highsens = default( highsens, 50 )
ss = default( ss, 1.5 )
LOS = string(lowsens)
HIS = string(highsens/100.0)
DRK = string(darkstr)
BRT = string(brightstr)
ox = clp.width()
oy = clp.height()
uv = 1
uv2 = (uv==3) ? 3 : 2
halos = clp.bicubicresize(m4(ox/rx),m4(oy/ry)).bicubicresize(ox,oy,1,0)
are = mt_lutxy(clp.mt_expand(U=uv,V=uv),clp.mt_inpand(U=uv,V=uv),"x y -","x y -","x y -",U=uv,V=uv)
ugly = mt_lutxy(halos.mt_expand(U=uv,V=uv),halos.mt_inpand(U=uv,V=uv),"x y -","x y -","x y -",U=uv,V=uv)
so = mt_lutxy( ugly, are, "y x - y 0.001 + / 255 * "+LOS+" - y 256 + 512 / "+HIS+" + *" )
lets = mt_merge(halos,clp,so,U=uv,V=uv)
remove = (ss==1.0) ? clp.repair(lets,1,0)
\ : clp.lanczosresize(m4(ox*ss),m4(oy*ss))
\ .mt_logic(lets.mt_expand(U=uv,V=uv).bicubicresize(m4(ox*ss),m4(oy*ss)),"min",U=uv2,V=uv2)
\ .mt_logic(lets.mt_inpand(U=uv,V=uv).bicubicresize(m4(ox*ss),m4(oy*ss)),"max",U=uv2,V=uv2)
\ .lanczosresize(ox,oy)
them = mt_lutxy(clp,remove,"x y < x x y - "+DRK+" * - x x y - "+BRT+" * - ?",U=2,V=2)
return( them )
}
function m4(float x) {return(x<16?16:int(round(x/4.0)*4))}
EDIT:
Changelog
Changes 2006-01-31:
- Changed syntax to use MaskTools2
Changes 2005-11-15:
- Initial release
If using older version probably need Masktools v1.0
EDIT:
Both of these lines are un-necessary as they are in the AutoLoad Plugins directory.
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\TemporalCleaner.dll")
import("C:\Program Files (x86)\AviSynth 2.5\plugins\Dehalo_Alpha.avsi")
1. Should I download "RemoveGrain v1.0b"?
2. I don't know how to "Edit:Changelog"
StainlessS
22nd December 2014, 14:54
1. Should I download "RemoveGrain v1.0b"?
Yes if you do not already have it.
2. I don't know how to "Edit:Changelog"
That just means that I added (edited) the following text in that post. You do not have to edit anything.
It might be best to download the Dehalo_Alpha.avsi (and make sure it ends in '.avsi', then put in you plugins directory (delete old one).
EDIT: As Reel.Deel suggests below, use the RgTools
Reel.Deel
22nd December 2014, 14:55
1. Should I download "RemoveGrain v1.0b"?
2. I don't know how to "Edit:Changelog"
1) Yes but you should use RgTools (https://github.com/tp7/RgTools/releases) -- it's strongly recommended as a drop-in replacement (not compatible with avs 2.5.8). If for some reason you need RemoveGrain download it here (http://avisynth.nl/index.php/RemoveGrain_v1.0b).
2) Completely disregard that.
ghjeong8408
22nd December 2014, 14:59
There are so many dll files named similarly in the removegrain folder.
Do I need to put the whold folder in the avisynth_plugin folder, or select one of the dll files put it in the plugin folder?
StainlessS
22nd December 2014, 15:02
Only the dll's in plugins folder, can you post the names of the dll files only
(the other files are probably source code files, you dont need them).
ghjeong8408
22nd December 2014, 15:06
I think I've installed masktool properly. But this message suddenly came out.
Reel.Deel
22nd December 2014, 15:06
There are so many dll files named similarly in the removegrain folder.
Do I need to put the whold folder in the avisynth_plugin folder, or select one of the dll files put it in the plugin folder?
I'm guessing that you downloaded RemoveGrain? You only need one version of each plugin; the recommended versions are the ones ending with SSE2 (do not use SSE3!).
Hmm, I guess you must of missed my post about RgTools (http://forum.doom9.org/showpost.php?p=1703506&postcount=18).
Edit:
I think I've installed masktool properly. But this message suddenly came out.
Also, use a third-party image host like imgur to host screenshots. All attachments here have to be manually approved, which is somewhat inefficient.
Or if just an error message how about just typing it?
ghjeong8408
22nd December 2014, 15:14
<The message>
Warning
mt_masktools-26.dll
Above plugin names contain undesirable symbols.
Rename them to only use alphanumeric or underscores, or make sure to use them in short name style only.
StainlessS
22nd December 2014, 15:18
Remove the hyphen ('-'), AvsPMod does not like '-' in script or plugin file names.
ie mt_masktools26.dll
Groucho2004
22nd December 2014, 15:27
AvsPMod does not like '-' in script or plugin file names.
What???? It's perfectly valid character for file names.
StainlessS
22nd December 2014, 15:30
AvsPMod does not like characters that do not make up a legal avisynth variable name, so would probably have a problem with a filename beginning with a digit.
(excludes the .extension).
So _ or Alpha for first char and then digits allowed too after that.
Think that is what it considers OK.
EDIT: It is probably related to calling a plugin by its extended name including the dll prefix.
Groucho2004
22nd December 2014, 15:34
AvsPMod does not like characters that do not make up a legal avisynth variable name, so would probably have a problem with a filename beginning with a digit.
(excludes the .extension).
So _ or Alpha for first char and then digits allowed too after that.
Think that is what it considers OK.
EDIT: It is probably related to calling a plugin by its extended name including the dll name.
None of this explains why a valid file name is not accepted. What am I missing?
ghjeong8408
22nd December 2014, 15:37
After installing masktool dll file, "mt_expand" in Dehalo avsi file turned red to skyblue. I think the tips worked!
However, I am still unable to use Dehalo in script file.
The error message is:
Script error: there is no function named "Dehalo_Alpha"
(C:\Users\USER\Desktop\script.avs, line 11)
Reel.Deel
22nd December 2014, 15:39
@ghjeong8408
What AviSynth version are you using? I ask this because if you're using AviSynth 2.6 Alpha 5 or AviSynth+ then MaskTools 2.0a48 (mt_masktools-26.dll - x64 too) is no longer compatible! Download MasTools2 b1 from here (https://github.com/tp7/masktools/releases).
----
Remove the hyphen ('-'), AvsPMod does not like '-' in script or plugin file names.
ie mt_masktools26.dll
I use AvsPmod and have not had a problem with said plugins.
Hmm, I guess this is an actual thing...
I updated my library and now I get a popup error instead of a meaningless parsing error:
mt_masktools-26.dll
Above plugin names contain undesirable symbols. Rename them to only use alphanumeric or underscores, or make sure to use them in short name style only.
I understand the message, but it's not very helpful to most people. It's such a corner case for most users that they should never even see it; it would make sense to put an alert in a log or the status bar instead. In the meantime I'll submit a patch to the avisynth+ guys if they care to work around it (by dropping symbols from the long name).
ghjeong8408
22nd December 2014, 15:42
My avisynth folder name is "Avisynth 2.5".
Then, the version number is 2.5?
Groucho2004
22nd December 2014, 15:42
Things could be much simpler if you just use the suggestion from post #5 and post the logs (and any error messages that may come up).
ghjeong8408
22nd December 2014, 15:44
How can I see the log file? @Groucho2004
Groucho2004
22nd December 2014, 15:46
How can I see the log file? @Groucho2004
1. File -> Save info
2. Tools -> Plugin Info -> Save plugin info report
3. Post both logs and any error messages you might get.
StainlessS
22nd December 2014, 15:48
Not sure but I think vdcrim may have implemented a work around for the '-' problem about 18 months ago, so ghjeong8408 may be using an old version.
ghjeong8408, are you sure that you have the Dehalo_Alpha.avsi in the plugins directory, with avsi extension ?
ghjeong8408
23rd December 2014, 04:44
This is my plugin folder and dehalo avsi file.
http://i.imgur.com/6wlWz1G.jpg
And this is my script.
http://i.imgur.com/O1dDBbZ.jpg" (http://i.imgur.com/O1dDBbZ.jpg)
ghjeong8408
23rd December 2014, 04:52
1. File -> Save info
2. Tools -> Plugin Info -> Save plugin info report
3. Post both logs and any error messages you might get.
I'm not sure where the "FILE" tab is. Is that here?
http://i.imgur.com/Pp3KcVw.jpg?1
Reel.Deel
23rd December 2014, 04:53
That does not really help any. Please do what Groucho2004 suggested, use Avisynth Info Tool (http://forum.doom9.org/showthread.php?t=170647) and post the log.
ghjeong8408
23rd December 2014, 05:12
These are errors.
http://i.imgur.com/ymzNmgW.jpg
And log txt files.
1. avisynthinfo.txt
[General Info - Avisynth.dll]
Version String: AviSynth 2.57, build:Dec 31 2006 [13:16:28]
File Version: 2.5.7.0
Directory: C:\windows\SYSTEM32
Timestamp: December 31, 2006, 11:16:36
MT Support: No
[Plugin Directories]
C:\Program Files (x86)\AviSynth 2.5\plugins
[Supported Color Spaces]
YUY2, YV12, RGB24, RGB32
[Internal Functions (270)]
DelayAudio
AmplifydB
Amplify
AssumeSampleRate
Normalize
MixAudio
ResampleAudio
ConvertToMono
EnsureVBRMP3Sync
MergeChannels
MonoToStereo
GetLeftChannel
GetRightChannel
GetChannel
GetChannels
KillVideo
KillAudio
ConvertAudioTo16bit
ConvertAudioTo8bit
ConvertAudioTo24bit
ConvertAudioTo32bit
ConvertAudioToFloat
StackVertical
StackHorizontal
ShowFiveVersions
Animate
ApplyRange
ConvertToRGB
ConvertToRGB24
ConvertToRGB32
ConvertToYV12
ConvertToYUY2
ConvertBackToYUY2
Greyscale
GeneralConvolution
Trim
FreezeFrame
DeleteFrame
DuplicateFrame
UnalignedSplice
AlignedSplice
Dissolve
AudioDub
AudioDubEx
Reverse
FadeOut0
FadeOut
FadeOut2
FadeIn0
FadeIn
FadeIn2
FadeIO0
FadeIO
FadeIO2
Loop
ComplementParity
AssumeTFF
AssumeBFF
AssumeFieldBased
AssumeFrameBased
SeparateFields
Weave
DoubleWeave
Pulldown
SelectEvery
SelectEven
SelectOdd
Interleave
SwapFields
Bob
SelectRangeEvery
Blur
Sharpen
TemporalSoften
SpatialSoften
AssumeScaledFPS
AssumeFPS
ChangeFPS
ConvertFPS
Histogram
Mask
ColorKeyMask
ResetMask
Invert
ShowAlpha
ShowRed
ShowGreen
ShowBlue
MergeRGB
MergeARGB
Layer
Subtract
Levels
RGBAdjust
Tweak
Limiter
FixLuminance
FixBrokenChromaUpsampling
PeculiarBlend
PointResize
BilinearResize
BicubicResize
LanczosResize
Lanczos4Resize
Spline16Resize
Spline36Resize
GaussResize
VerticalReduceBy2
HorizontalReduceBy2
ReduceBy2
muldiv
floor
ceil
round
sin
cos
pi
log
exp
pow
sqrt
abs
sign
lcase
ucase
strlen
revstr
leftstr
midstr
rightstr
findstr
rand
Select
nop
width
height
framecount
framerate
frameratenumerator
frameratedenominator
audiorate
audiolength
audiolengthf
audiochannels
audiobits
IsAudioFloat
IsAudioInt
IsRGB
IsYUY2
IsYUV
IsYV12
IsPlanar
IsInterleaved
IsRGB24
IsRGB32
IsFieldBased
IsFrameBased
GetParity
String
IsBool
IsInt
IsFloat
IsString
IsClip
Defined
Default
Eval
Apply
Import
Assert
Cache
SetMemoryMax
SetWorkingDir
Exist
Chr
Time
Spline
int
frac
float
value
hexvalue
VersionNumber
VersionString
HasVideo
HasAudio
AVISource
AVIFileSource
WAVSource
OpenDMLSource
SegmentedAVISource
SegmentedDirectShowSource
BlankClip
Blackness
MessageClip
ColorBars
Tone
Version
ShowFrameNumber
ShowSMPTE
Info
Subtitle
Compare
FlipVertical
FlipHorizontal
Crop
CropBottom
AddBorders
Letterbox
Merge
MergeChroma
MergeLuma
SwapUV
UToY
VToY
YToUV
ColorYUV
Null
SetPlanarLegacyAlignment
ImageWriter
ImageReader
ImageSource
TurnLeft
TurnRight
Turn180
ConditionalFilter
ScriptClip
ConditionalReader
FrameEvaluate
WriteFile
WriteFileIf
WriteFileStart
WriteFileEnd
AverageLuma
AverageChromaU
AverageChromaV
RGBDifference
LumaDifference
ChromaUDifference
ChromaVDifference
YDifferenceFromPrevious
UDifferenceFromPrevious
VDifferenceFromPrevious
RGBDifferenceFromPrevious
YDifferenceToNext
UDifferenceToNext
VDifferenceToNext
RGBDifferenceToNext
YPlaneMax
YPlaneMin
YPlaneMedian
YPlaneMinMaxDifference
UPlaneMax
UPlaneMin
UPlaneMedian
UPlaneMinMaxDifference
VPlaneMax
VPlaneMin
VPlaneMedian
VPlaneMinMaxDifference
LoadPlugin
LoadVirtualdubPlugin
LoadVFAPIPlugin
LoadCPlugin
Load_Stdcall_Plugin
InternalCache
SSRC
SuperEQ
Overlay
TimeStretch
[External Functions (100)]
asharp
asharp_asharp
ColorYUY2
coloryuy2_for_25_ColorYUY2
DirectShowSource
DirectShowSource_DirectShowSource
EEDI2
eedi2_imp_EEDI2
FFT3DFilter
FFT3DFilter_FFT3DFilter
gradfun2db
gradfun2db_gradfun2db
mt_invert
mt_masktools26_mt_invert
mt_binarize
mt_masktools26_mt_binarize
mt_inflate
mt_masktools26_mt_inflate
mt_deflate
mt_masktools26_mt_deflate
mt_inpand
mt_masktools26_mt_inpand
mt_expand
mt_masktools26_mt_expand
mt_lut
mt_masktools26_mt_lut
mt_lutxy
mt_masktools26_mt_lutxy
mt_lutxyz
mt_masktools26_mt_lutxyz
mt_luts
mt_masktools26_mt_luts
mt_lutf
mt_masktools26_mt_lutf
mt_lutsx
mt_masktools26_mt_lutsx
mt_lutspa
mt_masktools26_mt_lutspa
mt_merge
mt_masktools26_mt_merge
mt_logic
mt_masktools26_mt_logic
mt_convolution
mt_masktools26_mt_convolution
mt_mappedblur
mt_masktools26_mt_mappedblur
mt_gradient
mt_masktools26_mt_gradient
mt_makediff
mt_masktools26_mt_makediff
mt_average
mt_masktools26_mt_average
mt_adddiff
mt_masktools26_mt_adddiff
mt_clamp
mt_masktools26_mt_clamp
mt_motion
mt_masktools26_mt_motion
mt_edge
mt_masktools26_mt_edge
mt_hysteresis
mt_masktools26_mt_hysteresis
mt_losange
mt_masktools26_mt_losange
mt_rectangle
mt_masktools26_mt_rectangle
mt_ellipse
mt_masktools26_mt_ellipse
mt_square
mt_masktools26_mt_square
mt_circle
mt_masktools26_mt_circle
mt_diamond
mt_masktools26_mt_diamond
mt_freerectangle
mt_masktools26_mt_freerectangle
mt_freeellipse
mt_masktools26_mt_freeellipse
mt_freelosange
mt_masktools26_mt_freelosange
mt_polish
mt_masktools26_mt_polish
mt_infix
mt_masktools26_mt_infix
SangNom
SangNom_SangNom
TCPServer
TCPDeliver_TCPServer
TCPSource
TCPDeliver_TCPSource
TemporalCleaner
TemporalCleaner_TemporalCleaner
UnFilter
unfilter_UnFilter
WarpSharp
warpsharp_WarpSharp
XSharpen
warpsharp_XSharpen
_2DCleanYUY2
_2DCleanYUY2_for_25__2DCleanYUY2
2. avisynthplugininfo.txt
C:\Program Files (x86)\AviSynth 2.5\plugins\asharp.dll
Timestamp: December 16, 2014, 01:41:43
MD5 Hash: CA5D1787EF8428DBFBDC4688650149E5
DLL Dependencies: MSVCRT.dll, KERNEL32.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 0.9.5.0
PRODUCTVERSION: 0.9.5.0
Language: 프랑스어(프랑스)
Comments: Distributed under GPLv2
CompanyName: ^_^
FileDescription: asharp 0.95 for Avisynth 2.5
FileVersion: 0, 9, 5, 0
ProductVersion: 0, 9, 5, 0
InternalName: asharp
LegalCopyright: Copyright ⓒ 2002 MarcFD
LegalTrademarks: ^_^
OriginalFilename: asharp.dll
PrivateBuild:
ProductName: asharp
SpecialBuild:
C:\Program Files (x86)\AviSynth 2.5\plugins\coloryuy2_for_25.dll
Timestamp: December 21, 2014, 23:28:12
MD5 Hash: 29A858896917F387D51AA355886CB746
DLL Dependencies: KERNEL32.dll, MSVCRT.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 0.17.0.7
PRODUCTVERSION: 0.17.0.7
Language: 언어 중립
Comments: via http://members.tripod.co.jp/kiraru2002/
CompanyName:
FileDescription: ColorYUY2
FileVersion: 0, 17, 0, 7
ProductVersion: 0, 17, 0, 7
InternalName: ColorYUY2
LegalCopyright: Copyright (C) 2002,2003 Kiraru2002
LegalTrademarks:
OriginalFilename: ColorYUY2.dll
PrivateBuild:
ProductName: ColorYUY2
SpecialBuild:
C:\Program Files (x86)\AviSynth 2.5\plugins\DirectShowSource.dll
Timestamp: December 24, 2006, 18:12:02
MD5 Hash: 573843773242B1D36764CB4FCABE4A28
DLL Dependencies: KERNEL32.DLL, MSVCRT.dll, ole32.dll, OLEAUT32.dll, QUARTZ.dll, USER32.dll, WINMM.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 2.5.7.0
PRODUCTVERSION: 2.5.7.0
Language: 언어 중립
Comments: Homepage: http://www.avisynth.org
CompanyName: The Public
FileDescription: Avisynth DirectShow Reader pluggin
FileVersion: 2, 5, 7, 1
ProductVersion: 2, 5, 7, 0
InternalName: DirectShowSource 2.5.7
LegalCopyright: ⓒ 2000-2006 Ben Rudiak-Gould and others
LegalTrademarks:
OriginalFilename: DirectShowSource.dll
PrivateBuild:
ProductName: Avisynth 2.5
SpecialBuild:
C:\Program Files (x86)\AviSynth 2.5\plugins\eedi2_imp.dll
Timestamp: December 17, 2014, 20:32:54
MD5 Hash: 38EC52FBAF4A6750927CE5A059881BC2
DLL Dependencies: KERNEL32.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 0.9.2.0
PRODUCTVERSION: 0.9.2.0
Language: 영어(미국)
Comments:
CompanyName:
FileDescription: EEDI2 v0.9.2 for Avisynth 2.5.x
FileVersion: 0, 9, 2, 0
ProductVersion: 0, 9, 2, 0
InternalName:
LegalCopyright: Copyright (C) 2005-2006 Kevin Stone
LegalTrademarks:
OriginalFilename:
PrivateBuild:
ProductName:
SpecialBuild:
C:\Program Files (x86)\AviSynth 2.5\plugins\FFT3DFilter.dll
Timestamp: December 15, 2014, 23:53:00
MD5 Hash: 2DDD22752BBAF5943A4B208AEFCD9E93
DLL Dependencies: USER32.dll, KERNEL32.dll, fftw3.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 2.1.1.0
PRODUCTVERSION: 2.1.1.0
Language: 언어 중립
Comments: Frequency Domain filter. Uses external FFTW3.DLL library.
CompanyName: A.G.Balakhnin aka Fizick, bag@hotmail.ru, http://avisynth.org.ru
FileDescription: FFT3DFilter plugin for Avisynth 2.5
FileVersion: 2, 1, 1, 0
ProductVersion: 2, 1, 1, 0
InternalName: FFT3DFilter
LegalCopyright: Copyright ⓒ 2004-2006 A.G.Balakhnin
LegalTrademarks:
OriginalFilename: FFT3DFilter.dll
PrivateBuild:
ProductName: FFT3DFilter
SpecialBuild:
C:\Program Files (x86)\AviSynth 2.5\plugins\FFT3dGPU.dll
Timestamp: August 25, 2006, 09:23:38
MD5 Hash: D7F6EEEE708524DF57EBCFA2ACCD366F
DLL Dependencies: d3dx9_30.dll, d3d9.dll, DINPUT8.dll, VERSION.dll, KERNEL32.dll, USER32.dll, ole32.dll, OLEAUT32.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 0.8.2.0
PRODUCTVERSION: 0.8.2.0
Language: 덴마크어(덴마크)
Comments:
CompanyName:
FileDescription: FFT3dGPU
FileVersion: 0, 8, 2, 0
ProductVersion: 0, 8, 2, 0
InternalName: FFT3dGPU
LegalCopyright: Copyright (C) 2005
LegalTrademarks:
OriginalFilename: FFT3dGPU.dll
PrivateBuild:
ProductName: FFT3dGPU
SpecialBuild:
C:\Program Files (x86)\AviSynth 2.5\plugins\gradfun2db.dll
Timestamp: March 15, 2006, 21:49:50
MD5 Hash: 0A2B0BDA7F89509C5FC74B6A60E58524
DLL Dependencies: KERNEL32.dll
Plugin version: AVS 2.5 Plugin
No VersionInfo available
C:\Program Files (x86)\AviSynth 2.5\plugins\mt_masktools26.dll
Timestamp: January 01, 2011, 02:12:44
MD5 Hash: 894FD2C6189BEDFED53E9ACA2C2A475A
DLL Dependencies: KERNEL32.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 2.0.48.0
PRODUCTVERSION: 2.0.48.0
Language: 영어(미국)
Comments:
CompanyName:
FileDescription: Masktools Dynamic Link Library
FileVersion:
ProductVersion:
InternalName: Masktools 2.0
LegalCopyright: Copyright (C) 2005
LegalTrademarks:
OriginalFilename: mt_masktools.dll
PrivateBuild:
ProductName: Masktools Dynamic Link Library
SpecialBuild:
C:\Program Files (x86)\AviSynth 2.5\plugins\RemoveGrainSSE2.dll
Timestamp: August 01, 2005, 00:08:11
MD5 Hash: AFE1271598E8602655A0243DAE87A01B
DLL Dependencies: MSVCR71.dll, KERNEL32.dll
Plugin version: AVS 2.5 Plugin
No VersionInfo available
C:\Program Files (x86)\AviSynth 2.5\plugins\SangNom.dll
Timestamp: January 18, 2004, 15:27:52
MD5 Hash: 10C4EDC72AEB80DDC9976116379737D6
DLL Dependencies: MSVCRT.dll, KERNEL32.dll
Plugin version: AVS 2.5 Plugin
No VersionInfo available
C:\Program Files (x86)\AviSynth 2.5\plugins\TCPDeliver.dll
Timestamp: December 24, 2006, 18:12:36
MD5 Hash: D278B3C0B291D635DB2F2A4DEBDEE53C
DLL Dependencies: KERNEL32.DLL, ADVAPI32.dll, COMCTL32.dll, comdlg32.dll, GDI32.dll, SHELL32.dll, USER32.dll, WINSPOOL.DRV, WS2_32.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 1.0.0.6
PRODUCTVERSION: 1.0.0.6
Language: 언어 중립
Comments:
CompanyName: avisynth.org
FileDescription: TCPDeliver
FileVersion: 1, 0, 0, 6
ProductVersion: 1, 0, 0, 6
InternalName: TCPDeliver
LegalCopyright: Copyright ⓒ 2004-2006, Klaus Post.
LegalTrademarks: Released under GPL.
OriginalFilename: TCPDeliver.dll
PrivateBuild:
ProductName: AviSynth TCPDeliver
SpecialBuild:
C:\Program Files (x86)\AviSynth 2.5\plugins\TemporalCleaner.dll
Timestamp: January 13, 2003, 08:29:42
MD5 Hash: 19DFF00F729C6DD17BD06E6A5DA74D1B
DLL Dependencies: KERNEL32.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 0.0.0.2
PRODUCTVERSION: 0.0.0.2
Language: 프랑스어(프랑스)
Comments: For Avisynth2.5 & Avisynth 2.0X
CompanyName: Vlad59
FileDescription: TemporalCleaner
FileVersion: 0, 0, 0, 2
ProductVersion: 0, 0, 0, 2
InternalName: TemporalCleaner
LegalCopyright: Copyright ⓒ 2002 Sebastien Lucas
LegalTrademarks: Released under GPLv2
OriginalFilename: TemporalCleaner.dll
PrivateBuild:
ProductName: TemporalCleaner
SpecialBuild:
C:\Program Files (x86)\AviSynth 2.5\plugins\unfilter.dll
Timestamp: December 17, 2014, 20:25:29
MD5 Hash: 867914B16538B2560E9DC527867FC130
DLL Dependencies: KERNEL32.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 0.0.1.5
PRODUCTVERSION: 0.0.1.5
Language: 영어(미국)
Comments: This sentience has tree errors.
CompanyName: trbarry@trbarry.com
FileDescription: UnFilter (soften/sharpen filter reverser)
FileVersion: 0, 0, 1, 5
ProductVersion: 0, 0, 1, 5
InternalName: UnFilter
LegalCopyright: Copyright ⓒ 2002 Tom Barry
LegalTrademarks: Open Source subject to GNU GPL
OriginalFilename: UnFilter.dll
PrivateBuild:
ProductName: UnFilter
SpecialBuild: Use AvisynthPlugInInit2 now
C:\Program Files (x86)\AviSynth 2.5\plugins\warpsharp.dll
Timestamp: January 03, 2003, 15:34:40
MD5 Hash: D103BBEF3B99D6CB1A7F960E2C7B6BBD
DLL Dependencies: MSVCRT.dll, KERNEL32.dll
Plugin version: AVS 2.5 Plugin
No VersionInfo available
C:\Program Files (x86)\AviSynth 2.5\plugins\_2DCleanYUY2_for_25.dll
Timestamp: December 15, 2014, 23:22:47
MD5 Hash: B2D66ABB938F4635E9D023D191305F3C
DLL Dependencies: KERNEL32.dll
Plugin version: AVS 2.5 Plugin
FILEVERSION: 0.0.0.10
PRODUCTVERSION: 0.0.0.10
Language: 언어 중립
Comments: Avisynth Plugin.\\n Visit http://members.tripod.co.jp/kiraru2002/
CompanyName:
FileDescription: _2DCleanYUY2
FileVersion: 0, 0, 0, 10
ProductVersion: 0, 0, 0, 10
InternalName: _2DCleanYUY2
LegalCopyright: Copyright (C) 2002 Kiraru2002
LegalTrademarks:
OriginalFilename: _2DCleanYUY2.dll
PrivateBuild:
ProductName: _2DCleanYUY2
SpecialBuild:
Reel.Deel
23rd December 2014, 05:28
Wow, why are you using AviSynth 2.5.7? Please do yourself and all of us a favor and update to the latest version. (http://forum.doom9.org/showthread.php?t=168764)
ghjeong8408
23rd December 2014, 05:42
Wow, why are you using AviSynth 2.5.7? Please do yourself and all of us a favor and update to the latest version. (http://forum.doom9.org/showthread.php?t=168764)
Thanks for your tips! I've installed rgtool, avisynth 2.6.0 and so on.
But my goal is to use Dehalo_Alpha.avsi without error message. What can I do for that?
StainlessS
23rd December 2014, 06:47
I dont see anything much wrong in your logs or directory.
Can you possibley post a listing of the Dehalo_Alpha.avsi script.
Paste the contents into the post box, switch to advanced mode, select the script text with the mouse, and click on the
'#' symbol so that it is shown on forum as formatted code.
Also, from now on until Dehalo_Alpha problem sorted, only use this script.
LoadPlugin("C:\Program Files (x86)\MeGUI_2507_x86\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("D:\N_EVANGELION_01\VIDEO_TS\VTS_02_CHAPTER_02_1.d2v", cpu=4, info=3)
DeHalo_Alpha()
And as posted previously, DO NOT IMPORT the Dehalo_Alpha.avsi into script, it should already be auto loaded because it is called
*.avsi and in the auto loaded plugins directory.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.