Looking at the histogram should help.
(since you use: Avisynth: Filtering->Avisynth->Misc->Preview->Show Histogram)
Haven't used Avisynth for a while, and I usually don't have to hard clip content, but the settings look fine to me.
You could probably alternatively use something like:
in a custom section.
Cu Selur

Haven't used Avisynth for a while, and I usually don't have to hard clip content, but the settings look fine to me.
You could probably alternatively use something like:
LoadPlugin("PATH TO Hybrid\64bit\Avisynth\avisynthPlugins\mvtools2.dll")
clp = clp.ConvertToPlanarRGB()
# split the channels
r = mt_lut(clp.ShowRed(), expr="x 16 max 235 min") # everything below 16 will be 16, everything above 235 will be 235
g = mt_lut(clp.ShowGreen(), expr="x 16 max 235 min") # everything below 16 will be 16, everything above 235 will be 235
b = mt_lut(clp.ShowBlue(), expr="x 16 max 235 min") # everything below 16 will be 16, everything above 235 will be 235
# merge the channels
MergeRGB(r, g, b)
# convert back to interleaved RGB
ConvertToRGB24(matrix="PC.601")
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.