Quality issues

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
User avatar
aerotem
show 'em my judo throw
Joined: Wed Jul 01, 2009 11:28 pm
Status: nah
Location: New Hampshire
Contact:
Org Profile

Quality issues

Post by aerotem » Thu Mar 25, 2010 4:51 pm

i keep getting this banding issue with my EVA 1.01 dvd, and so i tried using gradfun2db thinking it would help fix it, but it didn't make much of a difference.

without gradfun2db

http://img510.imageshack.us/img510/5451/banding1.png

http://img532.imageshack.us/img532/4743/banding2.png

http://img641.imageshack.us/img641/5742/banding3.png

with gradfun2b

http://img13.imageshack.us/img13/3456/gradfun2db.png

and here's the script

Code: Select all

mpeg2source("F:\Neon Genesis Evangelion\Evangelion 1.01 You Are (Not) Alone\Evangelion 1.01.d2v",cpu=6)Converttoyv12()
amvivtc(mode=1)
Spline64Resize(848,480)
Crop(4,10,-4,-10)
Deen("w3d",2,4,4)
gradfun2db()
awarpsharp2(8,1)
msharpen(threshold=10,strength=90,highq=true)
fastlinedarken(thinning=0)
SAA()

any help would be much appreciated.
Image

User avatar
Kariudo
Twilight prince
Joined: Fri Jul 15, 2005 11:08 pm
Status: 1924 bots banned and counting!
Location: Los taquitos unidos
Contact:
Org Profile

Re: Quality issues

Post by Kariudo » Thu Mar 25, 2010 4:59 pm

I'm not gonna be able to see anything on my laptop screen before it gets darker, but there are a few things I can mention.

cpu=6 shouldn't be needed
converttoyv12() isn't needed (DVDs should already be in yv12 colorspace)
Image
Image

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Re: Quality issues

Post by mirkosp » Thu Mar 25, 2010 5:33 pm

Why are you overfiltering eva? IIRC it looks very good, no need to filter it at all, you're just ruining it... those banding-like artifacts are probably introduced by the combined work of awarpsharp2 and SAA. You should place debanding after the SAA, if you really need any of those filtering lines at all.
Image

User avatar
EvaFan
Joined: Sun Mar 21, 2004 10:25 pm
Status: (*゚▽゚)o旦~ ー乾杯ー♪
Location: Somerset, KY
Org Profile

Re: Quality issues

Post by EvaFan » Sun Mar 28, 2010 12:57 pm

Spline64Resize(848,480)
Crop(4,10,-4,-10)
A lil late to the thread but usually people crop before they resize. I'm not sure if your doing it this way for a reason or not but technically your video is 840x460 after that crop :? . No longer mod16 either unless your exporting it back at 848,480 after editing. I don't see the point of that though, resized twice.
"The people cannot be [...] always, well informed. The part which is wrong will be discontented, in proportion to [...] the facts they misconceive. If they remain quiet under such misconceptions, it is lethargy, the forerunner of death to public liberty. What country can preserve its liberties, if it's rulers are not warned [...] that this people preserve the spirit of resistance? The tree of liberty must be refreshed from time to time, with the blood of patriots and tyrants."-Thomas Jefferson

Mister Hatt
Joined: Tue Dec 25, 2007 8:26 am
Status: better than you
Contact:
Org Profile

Re: Quality issues

Post by Mister Hatt » Thu Apr 01, 2010 12:49 pm

Banding? Try removing:

Deen("w3d",2,4,4)
gradfun2db()
awarpsharp2(8,1)
msharpen(threshold=10,strength=90,highq=true)
fastlinedarken(thinning=0)
SAA()

Get yourself a better IVTC as well, like TFM(mode=1,pp=5,slow=2,micmatching=2,clip2=tdeint(mode=2,type=3)).TDecimate()

Once you have all that shit gone, just use gradfun2dbmod() after your resize, and if you still think it needs filtering for some reason (it really doesn't, stop being blind) then you can fft3d with (sigma=0.6,bt=4,plane=4) before the gradfun line but after the resize. Make sure to crop before resize and when you do your final encode to correct your aspect ratio.

Locked

Return to “AviSynth Help”