Log in

View Full Version : Can you tell me what this is?


Trash Master
13th January 2008, 02:25
I am capping toons from my cable box. After the encode is done this happens. It seems just to happen in dark areas with motion. If you can help me it would be greatly appreciated. Thanks TM

Here are links to screen caps.

http://i45.photobucket.com/albums/f92/JoshtheRipper/Image1300.jpg
http://i45.photobucket.com/albums/f92/JoshtheRipper/Image1.jpg

http://i45.photobucket.com/albums/f92/JoshtheRipper/Image2300.jpg
http://i45.photobucket.com/albums/f92/JoshtheRipper/Image2.jpg

foxyshadis
13th January 2008, 06:17
Too-heavy temporal smoothing. Post your script.

Trash Master
14th January 2008, 06:12
Please don't rip on me. I don't understand a lot of this. If I am doing something wrong please let me know what it is so I can learn about it. I am using a ATI cap card capping mpeg2 @ 8.5mb.

SetWorkingDir("C:\Program Files\AviSynth 2.5\plugins")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb522.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\cnr2.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins\hqdn3d.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Fluxsmooth.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\RemoveGrainsse2.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Repairsse2.dll")
import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpenFaster.avsi")
mpeg2source("D:\TV Caps\yo.d2v",cpu=0,cpu2="xxxxoo")
RemoveGrain()
assumeTFF()
FieldDeinterlace(blend=true,threshold=7,dthreshold=7)
FluxSmoothST(10,15)
LimitedSharpenFaster(ss_x=1.50,ss_y=1.50,Smode=4,strength=200,soft=30)
hqdn3d()
Cnr2("xxx",4,5,255)
temporalsoften(3,3,5,15,2)

Raere
14th January 2008, 07:36
Please don't rip on me. I don't understand a lot of this. If I am doing something wrong please let me know what it is so I can learn about it. I am using a ATI cap card capping mpeg2 @ 8.5mb.

SetWorkingDir("C:\Program Files\AviSynth 2.5\plugins")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb522.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\cnr2.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins\hqdn3d.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Fluxsmooth.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\RemoveGrainsse2.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Repairsse2.dll")
import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpenFaster.avsi")
mpeg2source("D:\TV Caps\yo.d2v",cpu=0,cpu2="xxxxoo")
RemoveGrain()
assumeTFF()
FieldDeinterlace(blend=true,threshold=7,dthreshold=7)
FluxSmoothST(10,15)
LimitedSharpenFaster(ss_x=1.50,ss_y=1.50,Smode=4,strength=200,soft=30)
hqdn3d()
Cnr2("xxx",4,5,255)
temporalsoften(3,3,5,15,2)

First of all, you don't need to load the plugins, Avisynth does it by default.

Second, you're using 3 denoisers (4 if you count FluxSmooth as one) there. Cut it down to one, and increase the strength. hqdn3d works best with animation in my experience.

Try removing either FluxSmooth or Temporalsoften, they're probably causing the problem.

Trash Master
14th January 2008, 21:53
Thanks for the input. I removed Fluxsmooth and Temporalsoften and that did the trick. Again thank you very much for the help. TM