1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect xmlns="https://www.kdenlive.org" tag="avfilter.chromahold" id="avfilter.chromahold">
<name>Chroma Hold</name>
<description>Remove all color information for all colors except for certain one. </description>
<author>libavfilter</author>
<parameter type="color" name="av.color" notintimeline="1">
<name>Color key</name>
<comment>The color which will not be replaced with neutral chroma</comment>
</parameter>
<parameter type="animated" name="av.similarity" default="0.01" max="1.00" min="0.01" decimals="2" notintimeline="1">
<name>Similarity</name>
<comment><![CDATA[Similarity percentage with the select color<br>
0.01 matches only the exact key color, while 1.0 matches everything.]]></comment>
</parameter>
<parameter type="animated" name="av.blend" default="0" max="1" min="0" decimals="2" notintimeline="1">
<name>Blend</name>
<comment><![CDATA[Blend percentage. 0.0 makes pixels either fully grey, or not grey at all.<br>
Higher values result in more preserved color.]]></comment>
</parameter>
<parameter type="bool" name="av.yuv" default="false">
<name>YUV color</name>
<comment><![CDATA[Select this if the clip has YUV data instead of RGB.]]></comment>
</parameter>
</effect>
|