help me fix my script (actually Acaila's with some mods) » Hardware & Gadgets » Forum
Forum

Forum



ПоискПоиск   Users   Registration   Entrance
Today: 05.04.2025 - 20:27:30
Pages:  1  2  

help me fix my script (actually Acaila's with some mods)

Advertising

/
MessageAuthor

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 -----------------------------

---------------------------

punknamedjimmy

users




Statistics:
Messages: 6,545
Registration: 09.24.2002
09.07.24 - 22:27:50
Message # 1
RE: help me fix my script (actually Acaila's with some mods)

... and give us a hint to what Avisynth version you are using.

---------------------------

nikkis34

users




Statistics:
Messages: 103
Registration: 01.12.2003
09.07.24 - 22:32:27
Message # 2
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) -----------

---------------------------
no more

bags

users




Statistics:
Messages: 731
Registration: 10.23.2003
09.07.24 - 22:41:53
Message # 3
RE: help me fix my script (actually Acaila's with some mods)

Sorry. I'm using Avisynth 2.04 and using the latest plugin DLLs. I'm using latest VDub to open avs file. I'm also using WinXP if that matters.

---------------------------

FSF17

users




Statistics:
Messages: 168
Registration: 01.21.2003
09.07.24 - 22:45:47
Message # 4
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.

---------------------------
[IMG]http://[/IMG]

98technovlt

users




Statistics:
Messages: 847
Registration: 01.27.2003
09.07.24 - 22:52:40
Message # 5
RE: help me fix my script (actually Acaila's with some mods)

Have you tried using MAM shodan/Richard? How would you implement MAM using the same thought (my script) in mind? Thanks Jayel

---------------------------
"Injectors=$900...Drag Radials=$300...NOS=$500...The look on that 911 Twin Turbo owner's face: PRICELESS"

Logik

users




Statistics:
Messages: 485
Registration: 02.28.2001
09.07.24 - 23:03:19
Message # 6
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.

Roy Cya

users




Statistics:
Messages: 328
Registration: 12.02.2003
09.07.24 - 23:11:53
Message # 7
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

---------------------------

michaelab

users




Statistics:
Messages: 414
Registration: 04.27.2001
09.07.24 - 23:21:25
Message # 8
RE: help me fix my script (actually Acaila's with some mods)

I don't want to be picky, but this: Code:

---------------------------

Ben 93 325is

users




Statistics:
Messages: 51
Registration: 08.06.2001
09.07.24 - 23:31:16
Message # 9
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

toussi1

users




Statistics:
Messages: 790
Registration: 11.12.2002
09.07.24 - 23:36:19
Message # 10
RE: help me fix my script (actually Acaila's with some mods)
99 V40 rear shelf : Previous topicNext topic: upcoming 4.14 LTS
Pages:  1  2  

The administrator has prohibited guests from replying to messages! To register, follow the link: register


Participants