Grain/Color Change

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
User avatar
Zwill
Joined: Wed Jun 27, 2007 11:50 am
Status: Doing stuff ;\
Org Profile

Grain/Color Change

Post by Zwill » Fri Aug 28, 2009 5:34 am

Recently l ripped my Sword of the stranger dvd and encountered a few problems. I have tried a few filters here and there but nothing that works all around. I tried going with a very low deen "w3d",1,1,1)" and it did something but anything higher then that caused alot of quality loss and killed most of the amour details. The color seems to also change when l ttempsmooth, anyway to change that?

Unfiltered:
Spoiler :
Image

Script:

Code: Select all

mpeg2source("M:\My DVD Footage\Sword Of The Stranger\SOTS.d2v", cpu=4)
deint=TDeint(mode=2, mtnmode=3, blim=100)
TFM(order=1, cthresh=4, slow=2, clip2=deint)
TDecimate(mode=1)
LanczosResize(848,480)
#deen("w3d",3,4,6)
#ttempsmooth(scthresh=0.0)
#gradfun2dbmod(2.0)
#Limitedsharpenfaster()

Test:
Spoiler :
Image

Code: Select all

mpeg2source("M:\My DVD Footage\Sword Of The Stranger\SOTS.d2v", cpu=4)
deint=TDeint(mode=2, mtnmode=3, blim=100)
TFM(order=1, cthresh=4, slow=2, clip2=deint)
TDecimate(mode=1)
LanczosResize(848,480)
#deen("w3d",3,4,6)
gradfun2dbmod(2.0)
ttempsmooth()
Limitedsharpenfaster()
Just looking to see if l could get any help with this source :? .
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: Grain/Color Change

Post by mirkosp » Fri Aug 28, 2009 7:31 am

Image

Code: Select all

removegrain(mode=17)
dehalo_alpha()
lsfmod(strength=150,smode=5,lmode=4,soft=-2,edgemaskhq=true)
vmtoon(strength=60,thinning=0,sharpen=false)
maa()
gradfun2dbmod(1.5,str=0)
That should do... I hope. :sweat:
Image

User avatar
Zwill
Joined: Wed Jun 27, 2007 11:50 am
Status: Doing stuff ;\
Org Profile

Re: Grain/Color Change

Post by Zwill » Sat Aug 29, 2009 5:24 am

I got the Lsfmod off doom9 but l didn't find Maa().

Know where l could get it?
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: Grain/Color Change

Post by mirkosp » Sat Aug 29, 2009 5:57 am

Zwill wrote:I got the Lsfmod off doom9 but l didn't find Maa().

Know where l could get it?
It's in the animeivtc, you can find it here.
Image

User avatar
Zwill
Joined: Wed Jun 27, 2007 11:50 am
Status: Doing stuff ;\
Org Profile

Re: Grain/Color Change

Post by Zwill » Sun Aug 30, 2009 5:19 am

The removegrain seemed to take alot out of the picture so l reduced it down to this and added in a smoother.

http://www.sendspace.com/file/lf3yuk

Code: Select all

mpeg2source("M:\My DVD Footage\Sword Of The Stranger\SOTS.d2v", cpu=4)
deint=TDeint(mode=2, mtnmode=3, blim=100)
TFM(order=1, cthresh=4, slow=2, clip2=deint)
TDecimate(mode=1)
LanczosResize(848,480)
removegrain(mode=2)
deen("w3d",1,1,1)
dehalo_alpha()
lsfmod(strength=150,smode=5,lmode=4,soft=-2,edgemaskhq=true)
vmtoon(strength=60,thinning=0,sharpen=false)
maa()
gradfun2dbmod(1.5,str=0)
It seems to get blocky at the fight scenes though but l'm happy that l got this far.
Image Image

Locked

Return to “AviSynth Help”