PDA

View Full Version : avisynth_a_171202. & TemporalSoften


MoonWalker
25th December 2002, 11:44
In this build I experience on bug with TemporalSoften. With TemporalSoften(1,5,0) the whole screen is green whereas with avisynth_a_071202 it was ok..

Just to report it :)

MoonWalker

iago
25th December 2002, 14:04
I can confirm MoonWalker's bug report. Same here.

regards,
iago

sh0dan
25th December 2002, 14:54
Do you have a sample script?

MoonWalker
25th December 2002, 15:10
Originally posted by sh0dan
Do you have a sample script?

Green Frames :
LoadPlugin("c:\divx\avisynth2\plugins\MPEG2Dec3YV12.dll")
MPEG2Source("D:\13Ghosts\13ghosts.d2v")
crop(8,18,706,538)
TemporalSoften(1,5,0)
LanczosResize(672,352)

No Green Frames :
LoadPlugin("c:\divx\avisynth2\plugins\MPEG2Dec3YV12.dll")
MPEG2Source("D:\13Ghosts\13ghosts.d2v")
crop(8,18,706,538)
#TemporalSoften(1,5,0)
LanczosResize(672,352)

sh0dan
25th December 2002, 15:24
Thanks - when I get home to my own computer, I'll look at it! (Can't believe I haven't tested it!)

scmccarthy
25th December 2002, 15:29
(Can't believe I haven't tested it!)

I guess that is why it is alphaware!

Stephen

iago
25th December 2002, 16:10
@MoonWalker

Hehe, I know TemporalSoften(1,5,0) is your favourite filter! ;) Btw, that "mpeg2dec3YV12.dll" in your script, which version is it? ;)

The "mpeg2dec3.dll" I have here is v0.94 and it is dated 08/12/02.

regards,
iago

MoonWalker
25th December 2002, 17:43
Originally posted by iago
@MoonWalker

Hehe, I know TemporalSoften(1,5,0) is your favourite filter! ;) Btw, that "mpeg2dec3YV12.dll" in your script, which version is it? ;)

The "mpeg2dec3.dll" I have here is v0.94 and it is dated 08/12/02.

regards,
iago

TemporalSoften(1,5,0) :D :) ;) (If I find other filter/filters that does the same job better I will change my favorite filter :) )

Well mine too is v0.94 8/12/02 but I have tested and it's not the mpeg2dec...

Regards,
MoonWalker

sh0dan
25th December 2002, 17:53
Arg... Silly me!! Threshold must be >0, so use:

temporalsoften(1,5,1) until I fix it.

Or use mergechroma to merge the unmodified chroma values back in.

I optimized a little to heavily there :)