31.08.2020, 04:52
From conversation with TimeCube developer it seems mistake in script:
"TimeCube can work on any RGB format, not just RGB24, so it is an issue with the script generator."
"In the script you pasted, the input is converted to 8-bit before it reaches TimeCube:"
Guess it is better to fix it on Windows as well because that RGB24 probably force convert everything to crappy 8 bit
"TimeCube can work on any RGB format, not just RGB24, so it is an issue with the script generator."
"In the script you pasted, the input is converted to 8-bit before it reaches TimeCube:"
# adjusting color space from YUV422P10 to RGB24 for vscube
clip = core.resize.Bicubic(clip=clip, format=vs.RGB24, matrix_in_s="709", range_s="limited")
# color adjustment using TimeCube
clip = core.timecube.Cube(clip=clip, cube="/Applications/Hybrid.app/Contents/MacOS/TimeCubeFiles/identity.cube")
Guess it is better to fix it on Windows as well because that RGB24 probably force convert everything to crappy 8 bit