Annoying error
- Draw it blank
- Joined: Fri Apr 04, 2008 5:09 pm
- Status: Crying over spilt milk
- Location: On your screen...duh
Annoying error
Well I'm getting a headache and turning to you!
So I'm Working in avsp and I cant get any further than step one
I keep getting a lovely little error
That says
Script error:There Is no function named "Mpeg2Source"
and when I try "DGDecode_mpeg2source" or "mpeg2dec3_mpeg2source"
The same error pops up...
I'm rather lost and confused, help would be nice ^^
So I'm Working in avsp and I cant get any further than step one
I keep getting a lovely little error
That says
Script error:There Is no function named "Mpeg2Source"
and when I try "DGDecode_mpeg2source" or "mpeg2dec3_mpeg2source"
The same error pops up...
I'm rather lost and confused, help would be nice ^^
We came we saw...we attempted to kick ass, but in the end we failed, and yes, I'm still in pain.
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
Re: Annoying error
So, do you have the file DGDecode.dll or MPEG2Dec3DG.dll in your AVISynth plugins directory?
- Draw it blank
- Joined: Fri Apr 04, 2008 5:09 pm
- Status: Crying over spilt milk
- Location: On your screen...duh
Re: Annoying error
Yep I do I have them both
We came we saw...we attempted to kick ass, but in the end we failed, and yes, I'm still in pain.
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
Re: Annoying error
try taking one out of the plugins folder (whichever one you didn't use to index your vobs. If you used DGIndex, remove mpeg2dec3dg.dll)
- mirkosp
- The Absolute Mudman
- Joined: Mon Apr 24, 2006 6:24 am
- Status: (」・ワ・)」(⊃・ワ・)⊃
- Location: Gallarate (VA), Italy
- Contact:
Re: Annoying error
Nah, that's not it, if he calls them like dgdecode_mpeg2source or mpeg2dec3_mpeg2source it would be fine.Kariudo wrote:try taking one out of the plugins folder (whichever one you didn't use to index your vobs. If you used DGIndex, remove mpeg2dec3dg.dll)
I think that the autoload is failing, just try to use the loadplugin("C:\path to file\filename.dll") line in the script before the rest and see how that goes.
- Draw it blank
- Joined: Fri Apr 04, 2008 5:09 pm
- Status: Crying over spilt milk
- Location: On your screen...duh
Re: Annoying error
Yeah! It works now! Thanks!mirkosp wrote: Nah, that's not it, if he calls them like dgdecode_mpeg2source or mpeg2dec3_mpeg2source it would be fine.
I think that the autoload is failing, just try to use the loadplugin("C:\path to file\filename.dll") line in the script before the rest and see how that goes.
But now I have this Outer line thing going on at like every other frame
It also very annoying
Spoiler :
We came we saw...we attempted to kick ass, but in the end we failed, and yes, I'm still in pain.
- mirkosp
- The Absolute Mudman
- Joined: Mon Apr 24, 2006 6:24 am
- Status: (」・ワ・)」(⊃・ワ・)⊃
- Location: Gallarate (VA), Italy
- Contact:
Re: Annoying error
If it's something like every other frame, then it's probably telecine, and you'll need to IVTC and decimate:
That should do.
Code: Select all
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(cthresh=4, slow=2, clip2=deint)
TDecimate(mode=1)
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
Re: Annoying error
Fixed. Decimation is the second part of the IVTC operation (the first being field matching).mirkosp wrote:If it's something like two consecutive frames followed by three okay ones in each group of five, then it's probably telecine, and you'll need to IVTC.
- Draw it blank
- Joined: Fri Apr 04, 2008 5:09 pm
- Status: Crying over spilt milk
- Location: On your screen...duh
Re: Annoying error
OK, It's no longer happening as much but It IS still happening? (mostly on fast moving or sudden movement scenes/frames )
Could my .vob or .D2v be messed up?
Could my .vob or .D2v be messed up?
Spoiler :
We came we saw...we attempted to kick ass, but in the end we failed, and yes, I'm still in pain.
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
Re: Annoying error
Try reading the documentation for whatever you are using for Deinterlacing/IVTC-ing and tweak the parameters (small movement like mouths moving can elude the process.)