Replacing:
with:
does seem to fix the problem. (in propainter_utils.py)
if clip.format.bits_per_sample != 8:
clip = vs.core.resize.Bicubic(clip, format=clip.format.replace(bits_per_sample=8))if clip.format.bits_per_sample != 8:
if clip.format.sample_type == vs.FLOAT:
clip = vs.core.resize.Bicubic(clip, format=vs.RGB24, range_s="full")
else:
clip = vs.core.resize.Bicubic(clip, format=clip.format.replace(bits_per_sample=8))
----
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
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

