PDA

View Full Version : Odd Error?


Seraphic-
30th July 2006, 13:42
Does anyone have an idea why i'm getting this error? The scripts were working fine a few days ago. Below are both of them.

Avisynth open failure:
Avisynth: script open failed!

=================== 1

LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub_1.6.15\plugins\EEDI2.dll")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub_1.6.15\pluginsLeakKernelDeint.dll")
avisource("C:\Documents and Settings\Desktop\Untitled.avi")
trim(2,0)
converttoyuy2(interlaced=true)
assumetff()
interp = separatefields().selecteven().EEDI2(field=1)
leakkerneldeint(order=1,threshold=0,sharp=true)

===================

=================== 2

avisource("C:\Documents and Settings\Desktop\Untitled.avi")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub 1.6.15\plugins\TIVTC.dll")
mvbob()
FlipVertical()
TDecimate(mode=0,cycler=1,cycle=2)mvbob()

Thanks

foxyshadis
30th July 2006, 16:15
Both of those have syntax errors, and the messages avisynth gives for each should give you a hint.

LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub_1.6.15\pluginsLeakKernelDeint.dll")

LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub_1.6.15\plugins\LeakKernelDeint.dll")

TDecimate(mode=0,cycler=1,cycle=2)mvbob()

TDecimate(mode=0,cycler=1,cycle=2).mvbob()

Seraphic-
31st July 2006, 11:47
Yeah, it looks like I had a few errors in there. But the issue seems to also be with mvbob.avsi in the \AviSynth 2.5\plugins folder. When it's in there I get the error above. But if I remove it or change it to .avs script two loads, and script one just asks for mvbob plugin. Isn't "\AviSynth 2.5\plugins\mvbob.avsi" correct?

I had working the other day...so I don't know what the problem is.

AVIL
31st July 2006, 12:34
@Seraphic-

This error seems produced by direct loading plugin. It seems that mvbob.avsi don't find external plugins. Try to insert in mvbob script loadplugin sentences for all the plugins itself need.

Good luck

Seraphic-
1st August 2006, 01:52
I think the problem is that VirtualDub said it can't detect the file type of mvbob.avsi

It has no icon, but when it was working it had the icon of AviSynth. This is a big waste of time...I don't know why it changed, nor do I see a place to change the file type.

foxyshadis
1st August 2006, 03:27
You can't load .avsi into vdub, only .avs. Hmm, maybe avisynth needs a reinstall. Did you try explicitly importing mvbob, whatever you call the file?

Seraphic-
1st August 2006, 06:34
I did a full format and reinstall of Windows and still the same problem. Isn't mvbob() needed to call it?

check
1st August 2006, 06:48
I was thinking back to your older thread where you were considering changing format from RV to something else - is this ultimate goal of this to encode to h264? If so - VD isn't the program you should be using.

Seraphic-
1st August 2006, 08:34
Well, Xvid or H.264

But I wanted to use VD so that I could use the mvbob deinterlacer again. However, now i'm having this problem.

Check, that first time you told me how to do this it worked fine. I'm doing the same thing but for some reason it doesn't like .avsi files in "\AviSynth 2.5\plugins\mvbob.avsi" folder.

check
1st August 2006, 09:23
You can use mvbob in an aviscript that can be loaded into any application - there are a few reasons why not to put h264 into avi (which is what vd does), You would be better to look at an application like MeGUI

Seraphic-
1st August 2006, 09:32
How would that work? I mean, add "avisource("C:\Documents and Settings\Desktop\Untitled.avi")" to mvbob.avsi and then change it back to mvbob.avs? Is that correct?

foxyshadis
1st August 2006, 09:56
Unless you give us the exact errors virtualdub gives you when you open the file, we can't help you.

And no, from your main script,

avisource("C:\Documents and Settings\Desktop\Untitled.avi")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub 1.6.15\plugins\TIVTC.dll")
# load any plugins required by mvbob here, or inside mvbob.avsi
import("\path\to\mvbob.avsi")
mvbob()
FlipVertical()
TDecimate(mode=0,cycler=1,cycle=2)

Seraphic-
1st August 2006, 10:04
The error is below when I have "\AviSynth 2.5\plugins\mvbob.avsi" in the folder. For some reason AviSynth doesn't seem like .avsi now.

Avisynth open failure:
Avisynth: script open failed!

check
1st August 2006, 10:07
you do NOT want to modify the mvbob.avs/avsi file in any way! Just treat it like a plugin - you stick the unaltared file you got off the net into your plugin directory, rename to .avsi and then write mvbob() in your script to use it.

Seraphic-
1st August 2006, 10:23
Yes, i'm doing all that and I get the same error. Before I had this problem .avsi files had the AviSynth icon, but as soon a I change it from .avs to .avsi I get nothing.

http://www.seraphicgate.com/2.jpg

Seraphic-
1st August 2006, 10:42
The way foxyshadis talked about seems to be working. I just need to move the 32GB video from my slower disk drive.

Thanks for the help, but what a waste of time this was...:mad:

avisource("C:\Documents and Settings\Desktop\Untitled.avi")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub\plugins\TIVTC.dll")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub\plugins\EEDI2.dll")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub\plugins\LeakKernelDeint.dll")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub\plugins\MaskTools.dll")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub\plugins\MVTools.dll")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub\plugins\RemoveGrain_v10pre1.dll")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub\plugins\TomsMoComp.dll")
LoadPlugin("C:\Documents and Settings\Desktop\VirtualDub\plugins\UnDot.dll")
import("C:\Documents and Settings\Desktop\VirtualDub\mvbob.avsi")
mvbob()
FlipVertical()
TDecimate(mode=0,cycler=1,cycle=2)