]> git.sesse.net Git - kdenlive/blob - effects/frei0r_sopsat.xml
First work on rotoscoping GUI
[kdenlive] / effects / frei0r_sopsat.xml
1 <!DOCTYPE kpartgui>
2 <effect tag="frei0r.sopsat" id="frei0r.sopsat">
3         <name>SOP/Sat</name>
4         <description>Changes Slope, Offset, and Power of the color components, and the overall Saturation, according to the ASC CDL (Color Decision List).</description>
5         <author>Simon A. Eugster (Granjow)</author>
6         <parameter type="simplekeyframe" name="rSlope" default="100" min="0" max="1000" factor="100">
7                 <name>Slope Red</name>
8                 <comment><![CDATA[Changing the slope means multiplying the pixel value with a constant value. Black pixels will remain black, whileas brighter ones will be changed.<br/>
9                 All effects can be observed well when applied on a greyscale gradient and looking at the RGB Parade monitor.]]></comment>
10         </parameter>
11         <parameter type="simplekeyframe" name="gSlope" default="100" min="0" max="1000" factor="100">
12                 <name>Slope Green</name>
13         </parameter>
14         <parameter type="simplekeyframe" name="bSlope" default="100" min="0" max="1000" factor="100">
15                 <name>Slope Blue</name>
16         </parameter>
17         <parameter type="simplekeyframe" name="aSlope" default="100" min="0" max="1000" factor="100">
18                 <name>Slope Alpha</name>
19         </parameter>
20
21         <parameter type="simplekeyframe" name="rOffset" default="0" min="-1024" max="1024" factor="256">
22                 <name>Offset Red</name>
23                 <comment>Changing the offset lifts (or lowers) the brightness of each pixel by the given value.</comment>
24         </parameter>
25         <parameter type="simplekeyframe" name="gOffset" default="0" min="-1024" max="1024" factor="256">
26                 <name>Offset Green</name>
27         </parameter>
28         <parameter type="simplekeyframe" name="bOffset" default="0" min="-1024" max="1024" factor="256">
29                 <name>Offset Blue</name>
30         </parameter>
31         <parameter type="simplekeyframe" name="aOffset" default="0" min="-1024" max="1024" factor="256">
32                 <name>Offset Alpha</name>
33         </parameter>
34
35         <parameter type="simplekeyframe" name="rPower" default="100" min="1" max="1000" factor="100">
36                 <name>Power Red</name>
37                 <comment><![CDATA[Changes the Gamma value for the selected channel. Black and white pixel values will not be affected, but everything between.<br/>
38                 Mathematically, what happens is an exponentiation of the pixel brightness on <code>[0,1]</code> by the gamma value.]]></comment>
39         </parameter>
40         <parameter type="simplekeyframe" name="gPower" default="100" min="1" max="1000" factor="100">
41                 <name>Power Green</name>
42         </parameter>
43         <parameter type="simplekeyframe" name="bPower" default="100" min="1" max="1000" factor="100">
44                 <name>Power Blue</name>
45         </parameter>
46         <parameter type="simplekeyframe" name="aPower" default="100" min="1" max="1000" factor="100">
47                 <name>Power Alpha</name>
48         </parameter>
49
50         <parameter type="simplekeyframe" name="saturation" default="100" min="0" max="500" factor="100" intimeline="1">
51                 <name>Overall Saturation</name>
52                 <comment>The overall saturation will be changed after all previous effects have been applied.</comment>
53         </parameter>
54
55 </effect>