View Full Version : "Plugin was designed for a later version of Avisynth (8)"
wthreex
25th July 2021, 14:41
After i updated to version: 2924 i'll get this exception:
Error message for your reference: Plugin was designed for a later version of Avisynth (8)
(C:\Users\Downloads\Video\2zerinjg.ddy\test.mkv.avs, line 30)
line 30:
TextSub(string(SUB))
so the TextSub came from VSFilter.dll, How can i use this plugin in new version ?
Atak_Snajpera
25th July 2021, 14:55
Are you using latest version of Avisynth+ 3.7.0 ?
wthreex
25th July 2021, 14:58
Are you using latest version of Avisynth+ 3.7.0 ?
I'm using v2.6.0.6, should i upgrade that ?
wthreex
25th July 2021, 15:10
So i upgraded Avisynth to v3.7.0 but it closes itself unexpectedly when indexing the file
Atak_Snajpera
25th July 2021, 15:18
Closing? What?
wthreex
25th July 2021, 15:19
The program closes automatically while indexing file
Atak_Snajpera
25th July 2021, 17:15
What program? Jesus. Can't you be more specific?
StainlessS
25th July 2021, 17:23
And in addition to what A_S said, post your full script.
EDIT: And an AvsMeter log of what you have in plugins might help too,
From command line, Make log in current directory. [latest avsmeter I have is v3.90]
Avsmeter -avsinfo -log
EDIT:
Atak_Snajpera,
I'm guessin' maybe MeGUI is the program in-use, [as its in a MeGUI thread, I too opened the post via Todays Posts quick link thing, so I did not notice was in a MeGUI thread either].
wthreex
26th July 2021, 14:40
And in addition to what A_S said, post your full script.
EDIT: And an AvsMeter log of what you have in plugins might help too,
From command line, Make log in current directory. [latest avsmeter I have is v3.90]
Avsmeter -avsinfo -log
EDIT:
Atak_Snajpera,
I'm guessin' maybe MeGUI is the program in-use, [as its in a MeGUI thread, I too opened the post via Todays Posts quick link thing, so I did not notice was in a MeGUI thread either].
sorry about that guys and yes i'm using MeGUI.
nevermind that error, because i downgraded the MeGUI version but the error message is different now:
MidStr: Illegal character count: line 10
my full script:
LoadPlugin("C:\Users\Downloads\Programs\MeGui\tools\avisynth_plugin\VSFilter.dll")
LoadPlugin("C:\Users\Downloads\Programs\MeGUI\tools\lsmash\LSMASHSource.dll")
InputString = """LoadPlugin("C:\Users\Downloads\Programs\MeGUI\tools\lsmash\LSMASHSource.dll")
No1 = FindStr(InputString,"FFVideoSource") + 15
No2 = FindStr(InputString,"cachefile") - 6
No3 = FindStr(InputString,"cachefile") - 3
Image = MidStr(InputString, No1, No2 - No1) + """jpg"""
SUB = MidStr(InputString, No1, No2 - No1) + """ass"""
VID = MidStr(InputString, No1, No3 - No1)
IMG = string(image)
...
can you tell what did i wrong here ? thank you
StainlessS
26th July 2021, 15:22
InputString = """LoadPlugin("C:\Users\Downloads\Programs\MeGUI\tools\lsmash\LSMASHSource.dll")
# ...
No1 = FindStr(InputString,"FFVideoSource") + 15 # There Aint no "FFVideoSource" in that string, so No1 = 0 + 15
No2 = FindStr(InputString,"cachefile") - 6 # There Aint no "cachefile" in that string, so No1 = 0 - 6
No3 = FindStr(InputString,"cachefile") - 3 # There Aint no "cachefile" in that string, so No1 = 0 - 3
Image = MidStr(InputString, 15, -6 - -3) + """jpg"" # Error line
Non of the strings "FFVideoSource" or "cachefile" are found in your LoadPlugin tested string, so always 0.
You need a re-think.
wthreex
26th July 2021, 15:53
@StainlessS Yeah i fixed that but now i get There is no function named 'ImageSource'
I installed Avisynth from https://www.videohelp.com/download/AviSynth_260.exe
and MeGUI from https://www.videohelp.com/download/MeGUI-2913-64.zip
StainlessS
26th July 2021, 16:07
Well I guess you were using MeGUI supplied version of Avisynth+, and its plugin directory.
ImageSeq.dll, ie ImageSource is a separate plugin in AVS+, not builtin as in older v2.60.
Not sure whatis happening now.
Post your script again, and are you using megui to view ?
What happens if you view script in VDub2 ?
Also try
return Version
whats it say.
wthreex
26th July 2021, 16:18
ImageSeq.dll, ie ImageSource is a separate plugin
this was the problem
LoadPlugin("C:\Users\Downloads\Programs\MeGUI\tools\avs\plugins\ImageSeq.dll")
now fixed. thanks man
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.