StaxRip VapourSynth teszt (VHS - HiFi LP)

Опубликовано: 10 Июнь 2026
на канале: iqfighter [PIRÍTÓ]
97
0

Script:

import havsfunc
try:
import ssimdownsampler as ssim
except ImportError:
ssim = None

clip = core.resize.Bicubic(clip, format=vs.YUV420P8)

clip = core.std.SetFieldBased(clip, 2)
clip = core.bifrost.Bifrost(clip, interlaced=True)
clip = core.fmtc.bitdepth(clip, bits=16)

shift_x, shift_y = 2.0, 1.0
shifted = core.resize.Spline36(clip, src_left=shift_x, src_top=shift_y)
clip = core.std.ShufflePlanes(clips=[clip, shifted], planes=[0, 1, 2], colorfamily=vs.YUV)

clip = havsfunc.QTGMC(clip, Preset='Slower', SourceMatch=3, Lossless=0, MatchEdi='NNEDI3', TFF=True)

clip = core.knlm.KNLMeansCL(clip, d=2, a=2, h=1.8, channels="UV", device_type="gpu")
clip = havsfunc.SMDegrain(clip, tr=3, thSAD=450, pel=2, contrasharp=True, RefineMotion=True, prefilter=2)

clip = havsfunc.FineDehalo(clip, rx=2.0, ry=2.0, thmi=80, thma=128, darkstr=0)
clip = core.warp.AWarpSharp2(clip, depth=12, blur=3, planes=[1, 2])

clip = core.std.Crop(clip, left=10, top=6, right=14, bottom=16)

clip = core.nnedi3cl.NNEDI3CL(clip, field=1, dh=True, nns=4, qual=1)
clip = core.std.Transpose(clip)
clip = core.nnedi3cl.NNEDI3CL(clip, field=1, dh=True, nns=4, qual=1)
clip = core.std.Transpose(clip)

if ssim:
clip = ssim.SSimDownsampler(clip, width=960, height=720)
else:
clip = core.resize.Spline64(clip, width=960, height=720)

clip = havsfunc.LSFmod(clip, defaults='slow', strength=80, SdmpLo=6, soothe=True, ss_x=1.5, ss_y=1.5)

clip = core.fmtc.bitdepth(clip, bits=8, dmode=3)