Selur's Little Message Board

Full Version: Deoldify Vapoursynth filter
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I added some additional comments to 'Resize Chroma', changed the default to 'false' and changed the code that chroma_resize is always set in the invocation.

Cu Selur
I already explained the effect in the README. 
Please left the "Chroma Resize" true as default and set "(De)-Vibrancy"=0 by default.
The effect of "(De)-Vibrancy" will be visible only when "Chroma Resize"=true.  
See the updated section " Chroma Smoothing" in Filter Usage

Thanks,
Dan
"dark_darkness: list = [False, 0.2, 0.4, 0.8, 0.10]," should be "dark_darkness: list = [False, 0, 0.4, 0.8, 0.10]," then and "(De)-Vibrancy" should be disabled unless chroma_resize=True.
To late for this release, will change for next release.
Please don't change any thing, the version that you delivered to me It's Ok.
Like I wrote,
Quote:I added some additional comments to 'Resize Chroma', changed the default to 'false' and changed the code that chroma_resize is always set in the invocation.
these changes are in the public release.

In my current dev version I:
  • changed "Chroma Resize" true as default
  • set "(De)-Vibrancy"=0 by default.
  • disable "(De)-Vibrancy" unless "Chroma Resize" is true

Cu Selur
I installed the official version 2024.03.18.1 and it's Ok.

Thanks,
Dan
ok, then I will revert the changes to my dev version.
There is a bug in the deployed version. IF the "Color Stabilizer" is unchecked, in the script is not generated the string

Code:
color_stabilizer=[False,False,False,11,"center",True]

In this case will be applied the default values which are

Code:
color_stabilizer=[True,False,False,11,"center",True]

but since in this case is not loaded the plugin

Code:
Hybrid/64bit/vsfilters/MiscFilter/MiscFilters/MiscFilters.dll

The encode will crash.

Dan
Argh,... for next release, there are probably other similar issues too.
I made some test with the new version.

Notice how the colors of the clothes in the basic version keep changing from red to black, in this encode not using the "Chroma smoothing"

VideoTest6_Simple_small

While the version encoded with "Chroma smoothing" enabled is much more stable

VideoTest6_Dark+AF11C_small.mp4

I found that good values for "Chroma smoothing" are


Code:
dark_darkness=[True,0.4,0.8,0.8,0.8]

Dan