15.09.2026, 04:39
try:
seems somewhat better, but still not 'perfect'.
Cu Selur
clip = core.std.PlaneStats(clip, plane=0)
def set_interp_flag(n, f):
f = f.copy()
mics = f.props.get("TFMMics")
use = (
mics is not None
and len(mics) >= 4
and (mics[4] < 256 or f.props.get("PlaneStatsMax") > 250)
and (mics[0] == 256 or mics[1] == 256 or (mics[3] == 256)
and (f.props.get("PlaneStatsMax") > 236))
)
f.props["_UseInterp"] = 1 if use else 0
return f
flagged = core.std.ModifyFrame(clip, clip, set_interp_flag)
clip = flagged
import filldrops
clip = filldrops.ReplaceFlagged(flagged,method="mv")Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.

