Avisynthを絶賛ιょぅょ Part15

このエントリーをはてなブックマークに追加
185名無しさん@編集中
●修正
#-----------------------------------------------------------------------------------------
function ApplyZoneRange(clip clip, int "start", int "end"
\, string "filter", string "op", int "level", int "threshold", bool "use_chroma"
\, int "x", int "y", int "w", int "h", bool "fast")
{
start = default(start, 0)
end = default(end, clip.framecount())
op =default(op, "add")
level = default(level, 255)
threshold = default(threshold, 255)
use_chroma = default(use_chroma, true)
x = default(x, 0)
y = default(y, 0)
w = default(w, clip.width() - x)
h = default(h, clip.height() - y)
fast = default(fast, true)
return ApplyRange(clip, start, end, "ApplyZone"
\, filter, op, level, threshold, use_chroma, x, y, w, h, fast)
}