Log in

View Full Version : AviSynth restored my faith & totaly blew my mind !


xbox360
22nd May 2008, 21:54
Hello there after years of trying to fix my DVB-T recording's, I finally tried TemporalDegrain with cce basic (1pass CBR 8mbps, encoding speed is 4fps). The result restored my faith & totaly blew my mind !
Here is the script that I used:

LoadPlugin("c:\Program Files (x86)\AviSynth 2.5\plugins\DGDecode.dll")
Load_stdcall_Plugin("c:\Program Files (x86)\AviSynth 2.5\plugins\yadif.dll")
LoadPlugin("c:\Program Files (x86)\AviSynth 2.5\plugins\RemoveGrainSSE3.dll")
LoadPlugin("c:\Program Files (x86)\AviSynth 2.5\plugins\mt_masktools-26.dll")
LoadPlugin("c:\Program Files (x86)\AviSynth 2.5\plugins\mvtools.dll")
LoadPlugin("c:\Program Files (x86)\AviSynth 2.5\plugins\FFT3DFilter.dll")
LoadPlugin("c:\Program Files (x86)\AviSynth 2.5\plugins\hqdn3d.dll")
Import("c:\Program Files (x86)\AviSynth 2.5\plugins\TemporalDegrain.avsi")

mpeg2source("D:\Encoding Stuff\4 munites - madonna feat justin timberlake.d2v")
AssumeTFF()
yadif()
temporaldegrain()

Letterbox(14,14,0,0,0)

Screenshot's:

Before
http://i129.photobucket.com/albums/p229/MartinJunior/TemporalDegrain/001.jpg
After
http://i129.photobucket.com/albums/p229/MartinJunior/TemporalDegrain/002.jpg

Before
http://i129.photobucket.com/albums/p229/MartinJunior/TemporalDegrain/003.jpg
After
http://i129.photobucket.com/albums/p229/MartinJunior/TemporalDegrain/004.jpg

Before
http://i129.photobucket.com/albums/p229/MartinJunior/TemporalDegrain/005.jpg
After
http://i129.photobucket.com/albums/p229/MartinJunior/TemporalDegrain/006.jpg

Before
http://i129.photobucket.com/albums/p229/MartinJunior/TemporalDegrain/007.jpg
After
http://i129.photobucket.com/albums/p229/MartinJunior/TemporalDegrain/008.jpg

Imagine having noise & blocks on every frame of the video, now they're all gone & look amazing !

slk001
23rd May 2008, 17:22
You do know that you don't have to use the "LoadPlugin" function if you have your plugins in the "...\AviSynth 2.5\plugins" directory, don't you?