09.05.2025, 12:31
|
[HELP] Limited RGB 16-235
|
|
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: 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. Offline between (including) 29th of June and 5th of July => RochHarz Festival |
|
« Next Oldest | Next Newest »
|
Users browsing this thread: 1 Guest(s)


(since you use: Avisynth: Filtering->Avisynth->Misc->Preview->Show Histogram)