digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   KVCD: Error in my script - Unrecognized exception? (http://www.digitalfaq.com/archives/encode/3568-kvcd-error-script.html)

irshliquor 05-10-2003 06:20 PM

KVCD: Error in my script - Unrecognized exception?
 
I get this error when I'm trying to encode a .d2v (my first attempt at this)

"Unrecognized exception! C:\CATCH_ME_IF_YOU_CAN\VIDEO_TS\StMedianFilter.avs , line 7)"

here's my script:


LoadPlugin("D:\VCD\Movie Stacker\Filters\Mpeg2Dec.dll")
LoadPlugin("D:\VCD\Movie Stacker\Filters\GripFit_preview.dll")
LoadPlugin("D:\VCD\Movie Stacker\Filters\Unfilter.dll")
LoadPlugin("D:\VCD\Movie Stacker\Filters\LegalClip.dll")
LoadPlugin("D:\VCD\Movie Stacker\Filters\Sampler.dll")
LoadPlugin("D:\VCD\Movie Stacker\Filters\STMedianFilter.dll")
mpeg2Source("C:\CATCH_ME_IF_YOU_CAN\VIDEO_TS\prf.c atch.me.if.you.can.d2v")
ConverttoYUY2
LegalClip()
GripCrop(704, 480, overscan=2, source_anamorphic=false)
GripSize(resizer="LanczosResize")
STMedianFilter(10, 50, 0, 0, 10, 50)
unfilter(50,50)
temporalsmoother(1,2)
mergechroma(blur(1.58))
mergeluma(blur(0.2))
GripBorders()
LegalClip()

#Sampler(length=24)

jorel 05-10-2003 06:35 PM

from readme:

KNOWN ISSUES AND LIMITATIONS

1) Assumes YUV (YUY2) Frame Based input. Use an AVIsynth function to convert first if
needed.

2) Sorry, currently requires a P-III, Athlon, or higher. Needs SSEMMX support.

3) So far it has only been tested on SSEMMX (P3 & P4) machines.

4) It does more work filtering Luma than chroma. While chroma is also filtered the spacial chroma filter filters only vertically, and the temporal chroma filtering is motion compensated only vertically.
end

:!:
well the first "limitation" (YUY2),you do it right!
:wink:

"limitations" 2 and 3:
what is your cpu?
:?

:wink:

irshliquor 05-11-2003 03:23 AM

my cpu is a p4

jorel 05-11-2003 03:28 AM

Quote:

Originally Posted by irshliquor
my cpu is a p4

p4 friend!?!?! 8O

then i'm lost too cos,
your script is right ...can't see any error!
:?

irshliquor 05-11-2003 03:31 AM

maybe i'm messing up when ripping my dvd or making my d2v files?

my d2v file ends up being like 500kb...is this normal?

jorel 05-11-2003 03:39 AM

Quote:

Originally Posted by irshliquor
maybe i'm messing up when ripping my dvd or making my d2v files?

my d2v file ends up being like 500kb...is this normal?


no problems friend, .dv2 have few size!

try change this in the script:

ConvertToYUY2()

:wink:

irshliquor 05-11-2003 03:43 AM

i'm re doing the rip, so i'll try that when it's finished

jorel 05-11-2003 04:03 AM

after read some in avisynth docs,
i think that you don't need this line,
if your source is dvd..

than remove the line

ConvertToYUY2()

and see what happens!
:!:

irshliquor 05-11-2003 04:19 AM

still no luck :(

jorel 05-11-2003 04:28 AM

Quote:

Originally Posted by irshliquor
still no luck :(

where are the

mergechroma.dll
and
mergeluma.dll
in
D:\VCD\Movie Stacker\Filters\..... :?:
on the script?

:?:

ovg64 05-11-2003 06:06 AM

Quote:

Originally Posted by jorel
Quote:

Originally Posted by irshliquor
still no luck :(

where are the

mergechroma.dll
and
mergeluma.dll
in
D:\VCD\Movie Stacker\Filters\..... :?:
on the script?

:?:

They are part of avisynth Jorel (MergeChroma & Luma) :)

jorel 05-11-2003 06:17 AM

:?

strange cos i install the last avisynth 208 and
in the "plugins" folder or another place of my hd i
can't find the merge luma/chroma dlls.

then i download the filters from the link and now is working!

means that when you install the avisynth
the filters are instaled too? :?

if yes,why i can't found them before download from the link?
:? :?

thanks ovg64
:wink:

ovg64 05-11-2003 06:40 AM

Yes, Jorel and other filter like Sharpen, SpatialSoften, TemporalSoften etc. are also with in Avisynth. :)

jorel 05-11-2003 07:01 AM

Quote:

Originally Posted by ovg64
Yes, Jorel and other filter like Sharpen, SpatialSoften, TemporalSoften etc. are also with in Avisynth. :)

yeah?
8O

then i don't understand cos
when i install the last avisynt(208)
no filters or dlls are instaled with!
:? :? :? :?

what's wrong?
:?

ovg64 05-11-2003 07:23 AM

Im no sure they are in a dll fomat, but make a script with MovieStacker and u will see no patch two the Chroma filters.

jorel 05-11-2003 07:35 AM

thanks for explanations friend!
:wink:

but i'm really
:? :!:

if i remove my "dlls" folder i can't open the script in mpgenc
after use MovieStacker...
:?

jorel 05-11-2003 08:06 AM

Adder
this links from avisynth homepage explains
some about ConvertToYUY2 and more:

ConvertToYUY2(clip clip [, boolean interlaced]) v2.51

http://www.avisynth.org/index.php?page=Convert
http://www.avisynth.org/index.php?page=AviSynthManual


:!:

Racer99 05-11-2003 08:11 AM

Re: error in my script...help!
 
Quote:

Originally Posted by irshliquor
I get this error when I'm trying to encode a .d2v (my first attempt at this)

"Unrecognized exception! C:\CATCH_ME_IF_YOU_CAN\VIDEO_TS\StMedianFilter.avs , line 7)"

Open your .d2v file in notepad and post the first 15 or so lines and let's see what you got.

Racer 99

bman 05-11-2003 09:04 AM

@ irshliquor
It's simple : This Avisynth error means that version u are working with dosn't support this filter :D
Check what Avisynth version u are working with and upgrade it to v2.08 or v2.5* but first delete all Avisynth.dll files from windows\system32 folder .
Hope this'll help
bman

jorel 05-11-2003 09:44 AM

Quote:

Originally Posted by bman
@ irshliquor
It's simple : This Avisynth error means that version u are working with dosn't support this filter :D
Check what Avisynth version u are working with and upgrade it to v2.08 or v2.5* but first delete all Avisynth.dll files from windows\system32 folder .
Hope this'll help
bman

right bman,
this is what i try to mean. :wink:

but why avisynth don't install the
dlls/filters in my system like
ovg64 posted?
:?:


All times are GMT -5. The time now is 07:09 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.