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 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect xmlns="https://www.kdenlive.org" tag="avfilter.drawgrid" id="avfilter.drawgrid">
<name>Draw Grid</name>
<description>Draw a colored grid on the input video</description>
<author>libavfilter</author>
<parameter type="animated" name="av.x" default="0" min="0" max="%width" factor="1">
<name>X Offset</name>
<comment><![CDATA[Distance from the left edge in pixel]]></comment>
</parameter>
<parameter type="animated" name="av.y" default="0" min="0" max="%height" factor="1">
<name>Y Offset</name>
<comment><![CDATA[Distance from the top edge in pixel]]></comment>
</parameter>
<parameter type="animated" name="av.w" default="0" min="0" max="%width" factor="1">
<name>Width</name>
<comment><![CDATA[Distance between vertical lines in pixel]]></comment>
</parameter>
<parameter type="animated" name="av.h" default="0" min="0" max="%height" factor="1">
<name>Height</name>
<comment><![CDATA[Distance between horizontal lines in pixel]]></comment>
</parameter>
<parameter type="fixedcolor" name="av.color" default="0x0000FF" alpha="1">
<name>Color</name>
<comment><![CDATA[Select a color for the grid lines.<br>
Use the <em>Alpha</em> value to make the grid semi-transparent.]]></comment>
</parameter>
<parameter type="animated" name="av.t" default="3" min="0" max="%height" factor="1">
<name>Thickness (px)</name>
<comment><![CDATA[Sets the thickness for the grid lines in pixels]]></comment>
</parameter>
<parameter type="bool" name="av.replace" default="0" min="0" max="1">
<name>Replace color and alpha</name>
<comment><![CDATA[If the input has alpha, checking this<br>
will overwrite the video's color and alpha pixels with the pixels of the grid lines.<br>
By default, the grid lines will be composited onto the input, leaving the video's alpha intact.]]></comment>
</parameter>
</effect>
|