Indeed, I just reached that part of the guide today. It was a bit disjointed as it was located under Post Production.JaddziaDax wrote:dont forget to crop off those borders, and resize it to widescreen :O
At any rate, I think the majority of the footage looks pretty good. (Pretty good.)
I've noticed that there is a bit of banding in a few of the darker areas, though. I told AviSynth to ignore all of the filters (expect the IVTC and Resize stuff) in order to see what the original image looked like, and it too had some banding in it, though not as much. It seems Deen is accentuating the banding, even with the lower settings I'm using. Is there anything to do for that except either remove Deen or just try to avoid darker scenes? (Or just use such things anyway?)
Banding.
Banding2.
And my current script:
Code: Select all
MPEG2Source("F:\Stuff\DVD Rips\Ah! My Goddess\DGIndex Project Files\AMG 001.d2v")
deint=TDeint(mode=2,mtnmode=3,blim=100)
TFM(cthresh=4,slow=2,clip2=deint)
TDecimate(mode=1)
VagueDenoiser(threshold=2,method=1,nsteps=6,Wiener=true,chromaT=2.0)
RemoveGrain(mode=5)
RemoveGrain(mode=5)
Deen("w3d",2,4,4)
FluxSmoothST()
LimitedSharpenFaster()
vmToon(Sharpen=false,Strength=20)
Crop(8, 0, -8, -0)
LanczosResize(848, 480)
ConvertToRGB24()
I switched to vmToon instead of Toon since I could turn the sharpen function off.
I resized to 848x480 since I want to keep the widescreen aspect ratio.
And finally, I put in the ConvertToRGB24 because I don't plan on distributing this anywhere but online, so I figured I may as well edit in RGB.