Log in

View Full Version : MPEG2Dec3 loading errors


Strafix
25th June 2005, 21:19
im having a problem getting MPEG2Dec3.dll to load correctly in an avisynth script, which doesnt allow my mpeg2source to load. I searched the forum before because i seem to remeber another post pertaing to this topic which i found helpful, however i havent been able to find it. :confused:
Im using Avisynth 2.5 and my script is as follows

LoadPlugin("D:\plugins\MPEG2Dec3.dll")
LoadPlugin("D:\plugins\IT.dll")
mpeg2source("D:\Working\project.d2v")
it()

Manao
25th June 2005, 21:28
What message error do you get ? Without that information, we can only guess what is going wrong.

So, statistically, the most likely issue you're encountering is a version of dgindex uncompatible with mpeg2dec3

The second most likely issue is that you created the d2v, then moved the vob files to another directory, which isn't permitted.

Strafix
25th June 2005, 21:35
When loading into virtual dub the error i get is:
Avisynth open failure
MPEG2source: couldn't open file
("D:\Working\project.avs, line3)
and as for moving the vob files, they are still in the same directory.

Manao
25th June 2005, 21:40
Well, then it's one of the two issues i've already mentionned : download the latest DGMPGDec package, put dgdecode.dll into your plugin directory, dump the loadplugin(mpegdec3) for loadplugin(dgdecode) ( in fact, loadplugin is useless, there's autoloading ), and rebuild the d2v with the new dgindex.

It should then work

Strafix
25th June 2005, 21:43
Ok thank you, I'll try that now!