help me fix my script (actually Acaila's with some mods)
Advertising
/
Message
Author
It gives me "Avisynth access violation at 0x010d70d7. Anything I need to change? Thanks for the replies Jayel ---Here's the script----- LoadPlugin("D:\downloads\windows\utilities\divx\GordianKnot\mpeg2dec.dll") LoadPlugin("D:\downloads\windows\utilities\divx\GordianKnot\decomb.dll") LoadPlugin("D:\downloads\windows\utilities\divx\GordianKnot\cnr2.dll") LoadPlugin("D:\downloads\windows\utilities\divx\GordianKnot\mam.dll") LoadPlugin("D:\downloads\windows\utilities\divx\GordianKnot\SmoothHiQ.dll") #nofilter=mpeg2source("D:\dvdrips\dual7\dual7.d2v") body1=mpeg2source("D:\dvdrips\dual7\dual7.d2v").trim(0,42423).Telecide().Decimate(cycle=5).crop(8,0,704,480) credits1=mpeg2source("D:\dvdrips\dual7\dual7.d2v").trim(42424,0).Telecide().Decimate(cycle=5).crop(8,0,704,480) LumaFiltered=MAM(body1.cnr2().TemporalSoften(1,5,25),body1.SmoothHiQ(5,50,50,125,50)) ChromaFiltered=LumaFiltered.MergeLuma(LumaFiltered) movie=ChromaFiltered.BicubicResize(640,480,0,0.5) credits=credits1.TemporalSmoother(10).BilinearResize(640,480) #return movie return movie+credits #return nofilter -----------------------------
RE: help me fix my script (actually Acaila's with some mods)
well the filter originally works without MAM. Here's the previous line before I use MAM: 1 avs file using temporalsoften2 --------------- LumaFiltered=body1.temporalSoften(1,5,25),body1.SmoothHiQ(5,50,50,125,50)) ChromaFiltered=LumaFiltered.cnr2().MergeLuma(LumaFiltered) --------------- another avs file using SSHiQ ---------- LumaFiltered=body1.SmoothHiQ(5,50,50,125,50)) ChromaFiltered=LumaFiltered.cnr2().MergeLuma(LumaFiltered) -----------
RE: help me fix my script (actually Acaila's with some mods)
First intuition is then, of course, that the problem is MAM or CNR2 releated - without any source it is hard to determine the cause of the problem - try contacting Marc FD, and hear if it a known problem, or if he can recreate it.
RE: help me fix my script (actually Acaila's with some mods)
In my (short) tests, MAM didnt seem to like being given Clip references as arguments, to make clear what I mean: MAM(Cnr2(),TemporalSoften()) works, MAM(Clip1.Cnr2(),Clip2.TemporalSoften()) doesn't. Cheers Belgabor
--------------------------- Drink Responsibly, Drive FAST! Roy C.
RE: help me fix my script (actually Acaila's with some mods)
well I did that in my script with this change: -------- LumaFiltered=MAM(cnr2().TemporalSoften(1,5,25),SmoothHiQ(5,50,50,125,50)) ChromaFiltered=LumaFiltered.MergeLuma(LumaFiltered) ---------- it wouldn't work as it keeps on telling me that cnr2 has invalid arguments. Jayel
RE: help me fix my script (actually Acaila's with some mods)
Rename TemporalSoften to TemporalSoften2 and load the plugin at the beginning of your script. That should do it. If it doesn't replace TemporalSoften(1,5,255) by TemporalSoften(body1,1,5,255)And replace SmoothHiQ(5,50,255,125,50) by SmoothHiQ(body1,5,50,255,125,50) As for anime, just use something basic like: MPEG2Source(..) Crop(..) TemporalSmoother(1) SmoothHiQ(3,10,15,192,3) SimpleResize(..) Add whatever else you need (ivtc?). No need to do it with a complicted script, because you can safely smooth more in anime than for normal movies. I hardly ever encode anime so I'm the wrong guy to ask about recommended settings...
--------------------------- HID installation guide for dummies