1 (edited by fooladi 19-03-2013 23:11:25)

Topic: different avisynth plugins for some SVP profiles needed

how can I deblock only  SD not HD video clips?

I added this lines into beginning of MSmooth.Fps file:


mult=16
crop(0,0,int(width/mult)*mult,int(height/mult)*mult)

# for deinterlacing:
TomsMoComp(-1,3,1)
# for deblocking:
BlindPP(quant=12,cpu=4,moderate_h=15,moderate_v=25)
# add artificial fake details:
AddGrain(2,0.1,0.2)
# for sharpening:
Asharp(1.3, 8, 0.5, hqbf=true)

and use needed dll in avisynth plugins folder

parameters not fine tuned yet.

2 (edited by fooladi 19-03-2013 22:52:59)

Re: different avisynth plugins for some SVP profiles needed

it's time to learn the Avisynth script's syntax !
I'm too lazy wink


(width() < 721) || (height < 577) ? Last.BlindPP(quant=12,cpu=4,moderate_h=15,moderate_v=25) : Last

(width() < 721) || (height < 577) ? Last.AddGrain(2,0.1,0.2) : Last

(width() < 721) || (height < 577) ? last.Asharp(1.3, 8, 0.5, hqbf=true) : Last

do you know better method for deblocking?

Re: different avisynth plugins for some SVP profiles needed

fooladi
do you know better method for deblocking?
Try DeBlock plugin from Manao&Fizick. It was better some time ago.
I used it early and I didn't compare it to your method.