Log in

View Full Version : VdubMOD error


govindayu
29th November 2002, 02:58
I made a script (Gknot made a script) but every time I try to load it in VdubMOD error appears:

Unrecognized exception
line 5

My script:

LoadPlugin("c:\Backup\DIVXRA~1\GKNOT\mpeg2dec3.dll")
LoadPlugin("c:\Backup\DIVXRA~1\GKNOT\lanczos3.dll")
LoadPlugin("c:\Backup\DIVXRA~1\GKNOT\UnFilter.dll")
LoadPlugin("c:\Backup\DIVXRA~1\GKNOT\SimpleResize.dll")
mpeg2source("C:\dvd\film1.d2v")
crop(5,11,713,456)
UnFilter(-15,-15)
Lanczos3Resize(576,304)

I've installed avisynth 2.5 in system32 dir (I use WinXP). Why can't it load the script???

Do I have to use some special version of DVD2AVI or maybe some settings regarding color space in DVD2AVI?

JohnMK
29th November 2002, 03:19
Well I can't be certain, but I'd definitely remove the reference to loading LanczosResize. It's included in Avisynth 2.5, I believe. Take that out, and when you load the Avisynth resizer, call it thusly:

LanczosResize(x,y)

govindayu
29th November 2002, 03:29
This is how my scrypt looks:

LoadPlugin("c:\Backup\DIVXRA~1\GKNOT\mpeg2dec3.dll")
LoadPlugin("c:\Backup\DIVXRA~1\GKNOT\UnFilter.dll")
mpeg2source("c:\dvd\film1.d2v")
crop(5,11,713,456)
UnFilter(-15,-15)
LanczosResize(576,304)

And still the same message:

" Unrecognized exception!
(C:\DVD\film.avs)
Line 3 "

I ve tried to do another DVD2AVI project but still the same error. What am I doing wrong? I'm using DVD2AVI 1.77.3.

JohnMK
29th November 2002, 05:47
I had a similar problem with that version. Go back to 1.76.

ffroms
29th November 2002, 07:23
Are you sure that you are using correct version of mpeg2dec3.dll for avisynth2.5? As I could see in your first post you put simpleresize and there is only version for 2.0.x.

bb
29th November 2002, 08:12
govindayu,

you didn't rename or move the directory the d2v file references, did you?

bb

govindayu
29th November 2002, 13:10
I'll try to reinstal Windows maybe this is what's wrong. I have no success with 1.76 DVD2AVI but when I use mgeg2dec (regular) with AVISYNTH 2.07 everything works fine.

Here's what I did:

I've installed Avisynth 2.07 and then copyed avisynth.dll (2.5) in system32 (WinXP). After that I modified gknot scrypt to work with Avisynth 2.5 and when I tried to load it error message appeard. I'm not new in this stuff but this is the weardest thing ever happend.

wotef
29th November 2002, 13:26
also, why are you copying over 2.5 on top of 2.07 when it has nothing to do with your error message - which itself already indicates a problem with either mpeg2dec3 or dvd2avi 1.77x

if dvd2avi 1.76 + avisynth 2.07 + default mpeg2dec all work fine, why don't you just use that??

Boulder
29th November 2002, 13:31
For God's sake, reinstalling Windows is the _last_ option. If you have a workaround, use it.

nexus
29th November 2002, 13:47
Do you use the latest version of mpeg2dec3 (v0.93b)? Try without unfilter, maybe thats the problem.


--
nexus

MaTTeR
29th November 2002, 14:21
@govindayu
Shot in the dark...

If your trying to encode in the YV12 color space then make sure all the filters are the YV12 AVS 2.5 version.

I've had to trash Gknot scripts before and start over from scratch to get rid of these odd errors myself. Maybe start a new script file if you haven't done so already. For your basic script, you don't even need to use Gknot; simply create a new text file in Notepad.

govindayu
29th November 2002, 18:07
I'm using current MPEG2Dec for AVISYNTH 2.5 an i also think that problem lies there. Never the less I have to reinstall Windows and I will try that again. I'm interested in YV12 because I've seen MPEG2AVI and Iliked the speed.

Thanx