File: avfilter_unsharp.xml

package info (click to toggle)
kdenlive 25.12.0-1
  • links: PTS
  • area: main
  • in suites: forky
  • size: 125,912 kB
  • sloc: cpp: 206,648; xml: 11,857; python: 1,139; ansic: 1,054; javascript: 578; sh: 389; makefile: 15
file content (47 lines) | stat: -rw-r--r-- 2,859 bytes parent folder | download | duplicates (2)
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
39
40
41
42
43
44
45
46
47
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect xmlns="https://www.kdenlive.org" tag="avfilter.unsharp">
<!-- ffmpeg documentation says range for matrix settings is 3-23 but the max value can only be 13 -->
    <name>Sharp/Unsharp</name>
    <description>Sharpen or unsharpen/blur your video</description>
    <author>libavfilter</author>
    <parameter type="constant" name="av.lx" max="13" min="3" default="5" odd="1">
        <name>Luma horizontal matrix</name>
        <comment><![CDATA[Set the luma matrix horizontal size]]></comment>
    </parameter>
    <parameter type="constant" name="av.ly" max="13" min="3" default="5" odd="1">
        <name>Luma vertical matrix</name>
        <comment><![CDATA[Set the luma matrix vertical size]]></comment>
    </parameter>
    <parameter type="constant" name="av.la" max="5" min="-2" default="0" decimals="2">
        <name>Luma strength</name>
        <comment><![CDATA[Set the luma effect strength.<br>
            Reasonable values are between -1.5 and 1.5. Negative values will blur the input video, while positive values will sharpen it, a value of 0 will disable the effect. ]]></comment>
    </parameter>
    <parameter type="constant" name="av.cx" max="13" min="3" default="5" odd="1">
        <name>Chroma horizontal matrix</name>
        <comment><![CDATA[Set the chroma matrix horizontal size]]></comment>
    </parameter>
    <parameter type="constant" name="av.cy" max="13" min="3" default="5" odd="1">
        <name>Chroma vertical matrix</name>
        <comment><![CDATA[Set the chroma matrix vertical size]]></comment>
    </parameter>
    <parameter type="constant" name="av.ca" max="5" min="-2" default="0" decimals="2">
        <name>Chroma strength</name>
        <comment><![CDATA[Set the chroma effect strength.<br>
            Reasonable values are between -1.5 and 1.5. Negative values will blur the input video, while positive values will sharpen it, a value of zero will disable the effect. ]]></comment>
    </parameter>
    <parameter type="fixed" name="av.ax" max="13" min="3" default="5" odd="1" value="5">
        <name>Alpha horizontal matrix</name>
        <comment><![CDATA[Set the alpha matrix horizontal size]]></comment>
    </parameter>
    <parameter type="fixed" name="av.ay" max="13" min="3" default="5" odd="1" value="5">
        <name>Alpha vertical matrix</name>
        <comment><![CDATA[Set the alpha matrix vertical size]]></comment>
    </parameter>
    <parameter type="fixed" name="av.aa" max="5" min="-2" default="0" decimals="2" value="0">
        <name>Alpha strength</name>
        <comment><![CDATA[Set the alpha effect strength.<br>
            Reasonable values are between -1.5 and 1.5. Negative values will blur the input video, while positive values will sharpen it, a value of zero will disable the effect. ]]></comment>
    </parameter>
</effect>