View Full Version : Question about "Temporal Smooth"


Soulhunter
5th January 2004, 18:55
I have some questions...

Question No.1:
Is the TemporalSmooth included in a "special" version of mpeg2dec.dll the same as the one in ffdshow ???

Question No.2:
Is it included also in the other "recommendet" mpeg2dec3 versions ???

Question No.3:
How can I use it in Avisynth 2.5x ???

Tia, Soulhunter

Wilbert
5th January 2004, 20:13
Question No.1:
Is the TemporalSmooth included in a "special" version of mpeg2dec.dll the same as the one in ffdshow ???
Don't know.

Question No.2:
Is it included also in the other "recommendet" mpeg2dec3 versions ???

Nope.

Question No.3:
How can I use it in Avisynth 2.5x ???
Load("c:\loadpluginex.dll")
Load("c:\mpeg2dec.dll")
Load("c:\mpeg2dec3.dll")
mpeg2source("c:\video.d2v") # it should use mpeg2dec3.dll here
TemporalSmoother()

Something like this should work :)

Dreassica
5th January 2004, 22:04
no need for loadpluginex. That mpeg2dec dll is avs2.5 compliant, u do have to do a converttoyuy2() and converttoyv12() before and after the temporalsmoother line though

Soulhunter
7th January 2004, 19:13
Nope.
Ohw, sure its included... ;)

Thanks !!!
That mpeg2dec dll is avs2.5 compliant, u do have to do a converttoyuy2() and converttoyv12() before and after the temporalsmoother line though
So it only works in YUY2 mode... :(

Also thanks !!!


Bye