版面规则
提问时请注意:尽量详细描述操作过程、AVS脚本内容等,最好能写出片名,只贴图有时无法看出问题原因。
提示:发布原创内容请尽量使用附件上传。使用网盘会出现过期失效的问题,请注意。
joeleejj
帖子: 4
注册时间: 2018-02-03 12:54

请问各位大神,如何使用全部滤镜

小弟的脚本如下:

## Resize ## 高精度DVD转720p
nnedi3_resize16(lsb_in = false, tv_range = true, matrix = "709", output = "RGB48Y")
nnedi3_resize16(960, 720, lsb_in = True, lsb = True, sharp = 100, tv_range = False, curve = "709", Y=3, U=1, V=1)
Dither_convert_rgb_to_yuv(SelectEvery(3, 0), SelectEvery(3, 1), SelectEvery(3, 2), lsb=True, tv_range=true, output="YV12")
last
#
## Denoise ## Resize之后降躁,用CSmod补偿
nr_clp = last.dfttest(lsb_in=true, lsb=true)
nr_clp.CSmod16(last, preset="detail", lsb_in=true, lsb=true, chroma=true, mergesrc=true)
last
#
# Deband ## 使用CSmod补偿后的Clip做deband
edge_mask = mt_edge(thY2=255).mt_lut("x 1.2 ^")
luma_mask = mt_lut("x 180 - 255 * 219 /")
final_mask = mt_logic(edge_mask, luma_mask, "max")
mt_merge(f3kdb(input_mode=1, output_mode=1), final_mask, luma=true)
DitherPost ()
last
#
# AA ## deband后再做AA
last.CSmod(chroma=false, ss_w=1.50, ss_h=1.50, thr=0, filter_ss="AA")
last

请问这样写,全部滤镜会被用到吗?

回到 “AviSynth”