Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Video Encoding > MPEG-4 Encoder GUIs

Reply
 
Thread Tools Search this Thread Display Modes
Old 25th July 2021, 14:41   #1  |  Link
wthreex
Registered User
 
Join Date: Oct 2015
Posts: 97
"Plugin was designed for a later version of Avisynth (8)"

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:
Quote:
TextSub(string(SUB))
so the TextSub came from VSFilter.dll, How can i use this plugin in new version ?

Last edited by wthreex; 25th July 2021 at 14:43.
wthreex is offline   Reply With Quote
Old 25th July 2021, 14:55   #2  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Are you using latest version of Avisynth+ 3.7.0 ?
Atak_Snajpera is offline   Reply With Quote
Old 25th July 2021, 14:58   #3  |  Link
wthreex
Registered User
 
Join Date: Oct 2015
Posts: 97
Quote:
Originally Posted by Atak_Snajpera View Post
Are you using latest version of Avisynth+ 3.7.0 ?
I'm using v2.6.0.6, should i upgrade that ?
wthreex is offline   Reply With Quote
Old 25th July 2021, 15:10   #4  |  Link
wthreex
Registered User
 
Join Date: Oct 2015
Posts: 97
So i upgraded Avisynth to v3.7.0 but it closes itself unexpectedly when indexing the file
wthreex is offline   Reply With Quote
Old 25th July 2021, 15:18   #5  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Closing? What?
Atak_Snajpera is offline   Reply With Quote
Old 25th July 2021, 15:19   #6  |  Link
wthreex
Registered User
 
Join Date: Oct 2015
Posts: 97
The program closes automatically while indexing file
wthreex is offline   Reply With Quote
Old 25th July 2021, 17:15   #7  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
What program? Jesus. Can't you be more specific?
Atak_Snajpera is offline   Reply With Quote
Old 25th July 2021, 17:23   #8  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
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]
Code:
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].
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???

Last edited by StainlessS; 25th July 2021 at 17:39.
StainlessS is offline   Reply With Quote
Old 26th July 2021, 14:40   #9  |  Link
wthreex
Registered User
 
Join Date: Oct 2015
Posts: 97
Quote:
Originally Posted by StainlessS View Post
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]
Code:
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:

Code:
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

Last edited by wthreex; 26th July 2021 at 21:17.
wthreex is offline   Reply With Quote
Old 26th July 2021, 15:22   #10  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Code:
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.
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???
StainlessS is offline   Reply With Quote
Old 26th July 2021, 15:53   #11  |  Link
wthreex
Registered User
 
Join Date: Oct 2015
Posts: 97
@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
wthreex is offline   Reply With Quote
Old 26th July 2021, 16:07   #12  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
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

Code:
return Version
whats it say.
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???
StainlessS is offline   Reply With Quote
Old 26th July 2021, 16:18   #13  |  Link
wthreex
Registered User
 
Join Date: Oct 2015
Posts: 97
Quote:
ImageSeq.dll, ie ImageSource is a separate plugin
this was the problem
Code:
LoadPlugin("C:\Users\Downloads\Programs\MeGUI\tools\avs\plugins\ImageSeq.dll")
now fixed. thanks man

Last edited by wthreex; 26th July 2021 at 16:52.
wthreex is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 09:47.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.