Another n00bish question...
- Millions Legato
- Joined: Wed Nov 22, 2006 4:08 am
Another n00bish question...
After much work and careful studying, ive hit a snag. Ive managed to rip the correct .vob file I needed and indexed it for optimum performance in DGIindex, but when I take the next step and use VirtualDubMod, I cannot seem to get it to open the video script. It gives the message "Script error: there is no function named "mpeg2source". Does this mean that I have to reinstall AVIsynth or does that mean i have to make the script manually?
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
you need a plugin to be able to use mpeg2source().
it should be mpeg2dec3.dll (if you're using dvd2avi)
or dgdecode.dll (if using DGindex).
since you're using DGIndex, you'll need to use the second one
you need to load the plugin (or put the .dll in avisynth's plugin directory) before doing anything else in your script, it's done like this:
if you put the .dll into avisynth's plugin directory then you don't need to have the loadPlugin() line.
you just need to make sure that your version of AviSynth supports auto-loading (not sure which version started supporting this...but if you have version 2.5.6 or later it will work)
it should be mpeg2dec3.dll (if you're using dvd2avi)
or dgdecode.dll (if using DGindex).
since you're using DGIndex, you'll need to use the second one
you need to load the plugin (or put the .dll in avisynth's plugin directory) before doing anything else in your script, it's done like this:
Code: Select all
loadPlugin("path to dgdecode.dll")
you just need to make sure that your version of AviSynth supports auto-loading (not sure which version started supporting this...but if you have version 2.5.6 or later it will work)
- Millions Legato
- Joined: Wed Nov 22, 2006 4:08 am
- Millions Legato
- Joined: Wed Nov 22, 2006 4:08 am
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
I don't think so, but I'll give it a shot.
alright, when you downloaded DGindex you also got dgdecode.dll.
so the first step is to go to where you put DGindex. (or you could just go to start-search [all files and folders] and have your computer look for dgdecode.dll)
*once your computer finds the file, click and drag it from the search window onto your desktop
next, you have to go to where you installed AviSynth. It's most likely under my computer-C:-program files.
The folder will say AviSynth 2.5, go into it.
there should now be a folder that says plugins, go into it
now you need to drag DGDecode.dll from wherever it is, into the plugins folder (after you find it you may want to put it on your desktop so that it's easily accessible)
alright, when you downloaded DGindex you also got dgdecode.dll.
so the first step is to go to where you put DGindex. (or you could just go to start-search [all files and folders] and have your computer look for dgdecode.dll)
*once your computer finds the file, click and drag it from the search window onto your desktop
next, you have to go to where you installed AviSynth. It's most likely under my computer-C:-program files.
The folder will say AviSynth 2.5, go into it.
there should now be a folder that says plugins, go into it
now you need to drag DGDecode.dll from wherever it is, into the plugins folder (after you find it you may want to put it on your desktop so that it's easily accessible)
- Millions Legato
- Joined: Wed Nov 22, 2006 4:08 am
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
so you put the vob through DGIndex and got a d2v file right?
are you trying to load the vob file or the d2v file?
it would help if you posted your script
you can use the code tags[/code]
are you trying to load the vob file or the d2v file?
it would help if you posted your script
you can use the code tags
Code: Select all
[code]avisynth script goes in here
- Millions Legato
- Joined: Wed Nov 22, 2006 4:08 am
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
- Millions Legato
- Joined: Wed Nov 22, 2006 4:08 am