Annoying error

This forum is for questions and discussion of all the aspects of handling your footage. If you have questions about capturing/ripping footage, AviSynth, or compression/encoding/converting, look here.

Annoying error

Postby Draw it blank » Tue Jul 28, 2009 4:57 pm

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 ^^
We came we saw...we attempted to kick ass, but in the end we failed, and yes, I'm still in pain.
User avatar
Draw it blank
 
Joined: 04 Apr 2008
Location: On your screen...duh
Status: Crying over spilt milk

Re: Annoying error

Postby Scintilla » Tue Jul 28, 2009 5:09 pm

So, do you have the file DGDecode.dll or MPEG2Dec3DG.dll in your AVISynth plugins directory?
ImageImage
:pizza: :pizza: Image :pizza: :pizza:
User avatar
Scintilla
(for EXTREME)
 
Joined: 31 Mar 2003
Location: New Jersey
Status: Quo

Re: Annoying error

Postby Draw it blank » Tue Jul 28, 2009 10:56 pm

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.
User avatar
Draw it blank
 
Joined: 04 Apr 2008
Location: On your screen...duh
Status: Crying over spilt milk

Re: Annoying error

Postby Kariudo » Wed Jul 29, 2009 12:19 am

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)
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Re: Annoying error

Postby mirkosp » Wed Jul 29, 2009 9:08 am

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)

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.
Image
User avatar
mirkosp
MODkip
 
Joined: 24 Apr 2006
Location: Gallarate (VA), Italy
Status: (」・ワ・)」(⊃・ワ・)⊃

Re: Annoying error

Postby Draw it blank » Wed Jul 29, 2009 4:59 pm

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.


Yeah! It works now! Thanks!

But now I have this Outer line thing going on at like every other frame
It also very annoying

Spoiler :
WTH Is this? this never happened...is it my comp? Image
We came we saw...we attempted to kick ass, but in the end we failed, and yes, I'm still in pain.
User avatar
Draw it blank
 
Joined: 04 Apr 2008
Location: On your screen...duh
Status: Crying over spilt milk

Re: Annoying error

Postby mirkosp » Wed Jul 29, 2009 5:56 pm

If it's something like every other frame, then it's probably telecine, and you'll need to IVTC and decimate:

Code: Select all
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(cthresh=4, slow=2, clip2=deint)
TDecimate(mode=1)

That should do.
Image
User avatar
mirkosp
MODkip
 
Joined: 24 Apr 2006
Location: Gallarate (VA), Italy
Status: (」・ワ・)」(⊃・ワ・)⊃

Re: Annoying error

Postby Scintilla » Wed Jul 29, 2009 6:17 pm

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.

Fixed. Decimation is the second part of the IVTC operation (the first being field matching).
ImageImage
:pizza: :pizza: Image :pizza: :pizza:
User avatar
Scintilla
(for EXTREME)
 
Joined: 31 Mar 2003
Location: New Jersey
Status: Quo

Re: Annoying error

Postby Draw it blank » Wed Jul 29, 2009 6:44 pm

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?

Spoiler :
Not as bad but not around the mouth

Image
We came we saw...we attempted to kick ass, but in the end we failed, and yes, I'm still in pain.
User avatar
Draw it blank
 
Joined: 04 Apr 2008
Location: On your screen...duh
Status: Crying over spilt milk

Re: Annoying error

Postby Kariudo » Wed Jul 29, 2009 7:13 pm

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.)
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Re: Annoying error

Postby Scintilla » Wed Jul 29, 2009 7:24 pm

I'd try the simple solution first: comment out the "deint =" line and replace the TFM line with
TFM(d2v="[path of your D2V fie]")

Then if that doesn't work, you can get down to the tweaking.
ImageImage
:pizza: :pizza: Image :pizza: :pizza:
User avatar
Scintilla
(for EXTREME)
 
Joined: 31 Mar 2003
Location: New Jersey
Status: Quo

Re: Annoying error

Postby Draw it blank » Wed Jul 29, 2009 9:37 pm

Ok, so I tried what Scintilla said..aaand that didn't really help

So now I tweak? One question how do I tweek?
(and for the record I'm officially lost) ^^
We came we saw...we attempted to kick ass, but in the end we failed, and yes, I'm still in pain.
User avatar
Draw it blank
 
Joined: 04 Apr 2008
Location: On your screen...duh
Status: Crying over spilt milk

Re: Annoying error

Postby Kariudo » Wed Jul 29, 2009 9:54 pm

Like I said before, read the documentation (you should find in the avisynth plugins folder).
A lot of plugins are well documented and explain how each parameter is used.

if you're using TFM, the first thing you should tweak is cthresh (int, default 10, lower = more frames detected as combed)

online documentation for tivtc
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Re: Annoying error

Postby Draw it blank » Thu Jul 30, 2009 6:19 pm

Kariudo wrote:Like I said before, read the documentation (you should find in the avisynth plugins folder).
A lot of plugins are well documented and explain how each parameter is used.

if you're using TFM, the first thing you should tweak is cthresh (int, default 10, lower = more frames detected as combed)

online documentation for tivtc


YAYZ! I did what you said and It fixed everything, my picture is now 100% clean!
Thankyou peoples!
We came we saw...we attempted to kick ass, but in the end we failed, and yes, I'm still in pain.
User avatar
Draw it blank
 
Joined: 04 Apr 2008
Location: On your screen...duh
Status: Crying over spilt milk


Return to Footage Help

Who is online

Users browsing this forum: No registered users and 0 guests