File: avfilter_smartblur.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 (52 lines) | stat: -rw-r--r-- 3,969 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
48
49
50
51
52
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect xmlns="https://www.kdenlive.org" tag="avfilter.smartblur" id="avfilter.smartblur">
    <name>Smartblur</name>
    <description>Blur the input video without impacting the outlines. </description>
    <author>libavfilter</author>
    <parameter type="constant" name="av.lr" default="1.0" min="0.1" max="5.0" decimals="1">
        <name>Luma radius</name>
        <comment><![CDATA[Set the luma radius.<br>
            The value specifies the variance of the gaussian filter used to blur the image (slower if larger).]]></comment>
    </parameter>
    <parameter type="constant" name="av.ls" default="1.0" min="-1.0" max="1.0" decimals="1">
        <name>Luma strength</name>
        <comment><![CDATA[Set the luma strength.<br>
            The value configures the blurring. A positive value will blur the image, whereas a negative value will sharpen the image.]]></comment>
    </parameter>
    <parameter type="constant" name="av.lt" default="0" min="-30" max="+30" factor="1">
        <name>Luma threshold</name>
        <comment><![CDATA[Set the luma threshold used as a coefficient<br>
            to determine whether a pixel should be blurred or not. A value of 0 will filter all the image, positive values will filter flat areas, negative values will filter edges.]]></comment>
    </parameter>
    <parameter type="constant" name="av.cr" default="1.0" min="0.1" max="5.0" decimals="1">
        <name>Chroma radius</name>
        <comment><![CDATA[Set the chroma radius.<br>
            The value specifies the variance of the gaussian filter used to blur the image (slower if larger). If not specified, it defaults to the value set for <em>Luma radius</em>]]></comment>
    </parameter>
    <parameter type="constant" name="av.cs" default="1.0" min="-1.0" max="1.0" decimals="1">
        <name>Chroma strength</name>
        <comment><![CDATA[Set the chroma strength.<br>
            The value configures the blurring. A positive value will blur the image, whereas a negative value will sharpen the image. If not specified, it defaults to the value set for <em>Luma strength</em>.]]></comment>
    </parameter>
    <parameter type="constant" name="av.ct" default="0" min="-30" max="+30" factor="1">
        <name>Chroma threshold</name>
        <comment><![CDATA[Set the chroma threshold used as a coefficient<br>
            to determine whether a pixel should be blurred or not. A value of 0 will filter all the image, positive values will filter flat areas, negative values will filter edges. If not specified, it defaults to the value set for <em>Luma threshold</em>]]></comment>
    </parameter>
    <parameter type="constant" name="av.ar" default="1.0" min="0.1" max="5.0" decimals="1">
        <name>Alpha radius</name>
        <comment><![CDATA[Set the alpha radius.<br>
            The value specifies the variance of the gaussian filter used to blur the image (slower if larger). If not specified, it defaults to the value set for <em>Luma radius</em>]]></comment>
    </parameter>
    <parameter type="constant" name="av.as" default="1.0" min="-1.0" max="1.0" decimals="1">
        <name>Alpha strength</name>
        <comment><![CDATA[Set the alpha strength.<br>
            The value configures the blurring. A positive value will blur the image, whereas a negative value will sharpen the image. If not specified, it defaults to the value set for <em>Luma strength</em>.]]></comment>
    </parameter>
    <parameter type="constant" name="av.at" default="0" min="-30" max="+30" factor="1">
        <name>Alpha threshold</name>
        <comment><![CDATA[Set the alpha threshold used as a coefficient<br>
            to determine whether a pixel should be blurred or not. A value of 0 will filter all the image, positive values will filter flat areas, negative values will filter edges. If not specified, it defaults to the value set for <em>Luma threshold</em>]]></comment>
    </parameter>
</effect>