01.05.2024, 18:11
To test the new version I enabled Vapoursynth->Misc->Don't hide defaults
I found the following issues:
1)
Preset="fast"
ColorFix="Violet/Red"
ColorMap="none"
ColorTune="light"
is generated the following code
Where ColorMap is passed 2 times and is missing ColorTune
2)
Preset="slow"
ColorMap="blue->brown"
ColorFix="Violet/Red"
ColorTune="Light"
clip = ddeoldify_main(clip=clip, Preset="slow", ColorFix="violet/red", ColorMap="blue->brown", ColorMap="light", enable_fp16=True)
is generated the following code
Same issue of previous test
3)
Preset="custom"
ColorMap is disabled
ColorTune is disabled
ColorTune not disabled (should be disabled as well)
I don't have found other issues.
Dan
I found the following issues:
1)
Preset="fast"
ColorFix="Violet/Red"
ColorMap="none"
ColorTune="light"
is generated the following code
clip = ddeoldify_main(clip=clip, Preset="fast", ColorFix="violet/red", ColorMap="none", ColorMap="light", enable_fp16=True)
Where ColorMap is passed 2 times and is missing ColorTune
2)
Preset="slow"
ColorMap="blue->brown"
ColorFix="Violet/Red"
ColorTune="Light"
clip = ddeoldify_main(clip=clip, Preset="slow", ColorFix="violet/red", ColorMap="blue->brown", ColorMap="light", enable_fp16=True)
is generated the following code
clip = ddeoldify_main(clip=clip, Preset="slow", ColorFix="violet/red", ColorMap="blue->brown", ColorMap="light", enable_fp16=True)
Same issue of previous test
3)
Preset="custom"
ColorMap is disabled
ColorTune is disabled
ColorTune not disabled (should be disabled as well)
I don't have found other issues.
Dan